You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently debugging Minecraft through GDLauncher's integrated dev console can be quite frustrating due to none of the Log4j messages being formatted and them still being in their raw XML format.
Describe the solution you'd like
An option that is enabled by default to toggle Log4j message formatting.
The formatting would as an example look like this.
Raw output
<log4j:Eventlogger="FML"timestamp="1641045271634"level="DEBUG"thread="Client thread">
<log4j:Message><![CDATA[Bar Finished: Loading took 19.195s]]></log4j:Message>
</log4j:Event>
Formatted output
[14:47:14] [Client thread/DEBUG]: Bar Finished: Loading took 19.195s
[TIMESTAMP] [THREAD/LEVEL]: FORMATTED_MESSAGE
Another feature that is related to this would be specifying a custom formatted output. For instance something
like this (TIMESTAMP_TIME) [LOGGER/LEVEL] - FORMATTED_MESSAGE. Here the specified fields would be replaced by the xml log message fields.
Currently you can copy also look at the latest.log file generated during Minecraft, this unfortunately makes on-the-fly debugging very hard, since you always have to open the file again.
Additional context
No additional context
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently debugging Minecraft through GDLauncher's integrated dev console can be quite frustrating due to none of the Log4j messages being formatted and them still being in their raw XML format.
Describe the solution you'd like
An option that is enabled by default to toggle Log4j message formatting.
The formatting would as an example look like this.
Raw output
Formatted output
Another feature that is related to this would be specifying a custom formatted output. For instance something
like this
(TIMESTAMP_TIME) [LOGGER/LEVEL] - FORMATTED_MESSAGE
. Here the specified fields would be replaced by the xml log message fields.Describe alternatives you've considered
Currently you can copy also look at the latest.log file generated during Minecraft, this unfortunately makes on-the-fly debugging very hard, since you always have to open the file again.
Additional context
No additional context
The text was updated successfully, but these errors were encountered: