Skip to content

Commit

Permalink
make sure loggerName is not empty
Browse files Browse the repository at this point in the history
  • Loading branch information
ar committed Jan 2, 2025
1 parent 1767384 commit dbc2368
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public void setConfiguration (Configuration cfg)

try
{
String loggerName = cfg.get("packager-logger");
String loggerName = cfg.get("packager-logger", null);
if (loggerName != null)
setLogger(Logger.getLogger (loggerName),
cfg.get ("packager-realm"));
Expand Down

0 comments on commit dbc2368

Please sign in to comment.