Skip to content

Commit

Permalink
Merge pull request #42 from poeschik/master
Browse files Browse the repository at this point in the history
Log exception instead of writing to stderr
  • Loading branch information
akuhtz authored Oct 20, 2023
2 parents d30b103 + e724591 commit 4cb060c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ private String detectScriptUrlPerDHCP() throws IOException {
}
}
} catch (SocketException e) {
e.printStackTrace();
Logger.log(getClass(), LogLevel.ERROR, "Error detecting script url via DHCP.", e);
}
return url;
}
Expand Down

0 comments on commit 4cb060c

Please sign in to comment.