feat: Show basic information messages#294
Merged
dividedmind merged 1 commit intomasterfrom Mar 25, 2025
Merged
Conversation
dustinbyrne
approved these changes
Mar 5, 2025
e1c2363 to
d0eb15f
Compare
Agent now prints "starting" and "appmap saved" messages on stdout unless appmap.silent is set.
d0eb15f to
47850f5
Compare
|
🎉 This PR is included in version 1.28.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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]