-
Notifications
You must be signed in to change notification settings - Fork 152
Analyze log files #2481
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
Analyze log files #2481
Conversation
| logState = LogFileState.RUN_BATCH; | ||
|
|
||
| } else if (logState == LogFileState.RUN_BATCH && lowerMessage.startsWith( | ||
| "processing of task batch step") && lowerMessage.endsWith("finished")) { |
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.
is processing of task batch step correct? i cannot find it in my logs.
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.
2025-03-20 13:24:30 INFO io.github.mzmine.taskcontrol.impl.WrappedTask run Processing of task Batch step 24/24 done, status FINISHED
...unity/src/main/java/io/github/mzmine/modules/tools/output_compare_csv/CheckResultWriter.java
Outdated
Show resolved
Hide resolved
| import static org.junit.jupiter.api.Assertions.assertEquals; | ||
| import org.junit.jupiter.api.Test; | ||
|
|
||
| class AnalyzeLogFileTaskTest { |
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.
Test does not cover going out of the batch mode into manual again
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.
good call I will add a full log file as a resource.
I added the state tracking later
Module to analyze log files - can filter out warnings and errors