feat: add timestamps to maven build logs#750
Closed
0xReLogic wants to merge 1 commit intoobjectionary:masterfrom
0xReLogic:feature/add-timestamps-maven-logs
Closed
feat: add timestamps to maven build logs#7500xReLogic wants to merge 1 commit intoobjectionary:masterfrom 0xReLogic:feature/add-timestamps-maven-logs
0xReLogic wants to merge 1 commit intoobjectionary:masterfrom
0xReLogic:feature/add-timestamps-maven-logs
Conversation
This commit adds timestamp formatting to Maven build logs to make it easier to track build performance and debug timing issues. The timestamps are added using slf4j-simple logger properties: - showDateTime=true enables timestamp display - dateTimeFormat=yyyy-MM-dd HH:mm:ss sets the format Example output: 2025-10-27 04:40:41 [INFO] Scanning for projects... 2025-10-27 04:40:43 [INFO] BUILD SUCCESS 2025-10-27 04:40:43 [INFO] Total time: 2.039 s Fixes #94
Author
|
Closing this PR as I found there's already an existing PR #617 that addresses the same issue with tests included. Sorry for the duplicate! |
|
@0xReLogic Hey! Just a heads up - the branch name |
Author
|
@0crat Are you okey? 😕 |
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.
This PR adds timestamp formatting to Maven build logs to make it easier to track build performance and debug timing issues.
Changes
-Dorg.slf4j.simpleLogger.showDateTime=trueto enable timestamp display-Dorg.slf4j.simpleLogger.dateTimeFormat=yyyy-MM-dd HH:mm:ssto set timestamp formatExample Output
Before:
After:
Testing
eoc --verbose parsecommandFixes #94