Merge pull request #5111 from jmacxx/fix_unnecessary_exception_log

Fix log message when opening browser link
This commit is contained in:
Christoph Atteneder 2021-01-24 15:01:03 +01:00 committed by GitHub
commit f54ec2f6ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -94,7 +94,7 @@ class DesktopUtil {
return true;
}
} catch (IOException e) {
log.warn("Error running command. {}", e);
log.warn("Error running command. {}", e.toString());
return false;
}
}