feat: Show basic information messages #294
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Print basic informational messages on stderr (when starting and when appmap is written). This can be disabled with
appmap.silentproperty.Enhancements to Logging and Configuration:
agent/src/main/java/com/appland/appmap/Agent.java: Added logging of the AppMap agent version at startup and improved existing log messages to use the newLogger.printUserMessagemethod.agent/src/main/java/com/appland/appmap/config/Properties.java: Introduced a new propertySilentto control whether user messages should be printed to stderr.agent/src/main/java/com/appland/appmap/record/Recording.java: Added a log message to indicate when an AppMap recording is saved, using the newLogger.printUserMessagemethod.New Utility Method:
agent/src/main/java/com/appland/appmap/util/Logger.java: Added a new methodprintUserMessageto print messages to stderr unless the silent flag is set. This method is used to provide user-friendly messages during agent operations.Import Adjustments:
agent/src/main/java/com/appland/appmap/Agent.javaandagent/src/main/java/com/appland/appmap/record/Recording.java: Added imports for the newLoggerutility. [1] [2]