Skip to content

Commit

Permalink
Better debugging logs
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed Dec 10, 2024
1 parent d6bca4d commit 644369f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qz/printer/action/html/WebApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,9 @@ public static synchronized void initialize() throws IOException {
// Assume newer "Headless" mode is available
System.setProperty("glass.platform", "Headless");
}
log.trace("Initializing {} platform", useMonocle ? "monocle" : "headless");
log.trace("Initializing {} glass.platform", SystemUtilities.hasMonocle() ? "monocle" : "headless");
} else {
log.warn("Monocle platform will not be used");
log.warn("{} glass.platform will not be used", SystemUtilities.hasMonocle() ? "Monocle" : "Headless");
}
}

Expand Down

0 comments on commit 644369f

Please sign in to comment.