-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configure logging #16
Conversation
} | ||
} | ||
} | ||
|
||
private static void processFiles(LK2DxfOptions options) { | ||
private static boolean processFiles(LK2DxfOptions options) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PP: javadoc that explains boolean return
} | ||
|
||
EhiLogger.getInstance().addListener(new EhiLogAdapter()); | ||
EhiLogger.getInstance().removeListener(StdListener.getInstance()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Q: Hat der EhiLogger eine methode um alle listener zu entfernen bevor du unseren hinzufügst?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nein, es gibt nur diese beiden add und remove Methoden.
@@ -332,7 +336,7 @@ private static TransferDescription getTransferDescription(List<LayerMapping> lay | |||
} | |||
|
|||
try { | |||
System.out.println("iliModelsPath: " + iliModelsPath); | |||
LOGGER.info("iliModelsPath: {}", iliModelsPath); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PP: eventuell auf loglevel debug, da es einfach der pfad ins temp verzeichnis ist, wo die models aus dem jar hinkopiert werden.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Debug wird aktuell nur mit der --trace
Option angezeigt. Das sollte eigentlich reichen, der Pfad wird beim Model-Lookup ja auch wieder angezeigt.
Resolves #15