Skip to content

Commit

Permalink
Trivial : changed log levels in the fontext of issue #195
Browse files Browse the repository at this point in the history
  • Loading branch information
baubakg committed Sep 17, 2024
1 parent f2e527f commit 3fc9904
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ protected static NonInterruptiveEvent startEvent(String in_event, String in_onAc
if (eventExecutor == null) {
eventExecutor = Executors.newSingleThreadExecutor();
}
log.debug("Starting event {} for step {}.",in_event,in_onAccountOfStep);
log.info("Starting event {} for step {}.",in_event,in_onAccountOfStep);
NonInterruptiveEvent nie = instantiateClassFromString(in_event);
logEvent(EventMode.START, in_event, in_onAccountOfStep);
events.put(in_onAccountOfStep, nie);
Expand Down Expand Up @@ -155,7 +155,7 @@ private static NonInterruptiveEvent instantiateClassFromString(String in_event)
* @return The NonInterruptive Event that is started by this call
*/
protected static NonInterruptiveEvent finishEvent(String in_event, String in_onAccountOfStep) {
log.debug("Finishing event {} for step {}.", in_event, in_onAccountOfStep);
log.info("Finishing event {} for step {}.", in_event, in_onAccountOfStep);
NonInterruptiveEvent l_activeEvent = events.get(in_onAccountOfStep);
if (l_activeEvent == null) {
throw new PhasedTestException("No event of the type "+in_event+" was stored for the test step "+in_onAccountOfStep);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public void onTestFailedButWithinSuccessPercentage(ITestResult result) {

@Override
public void onStart(ITestContext context) {
log.debug("{} onStart - current Execution State is : {}.",
log.info("{} onStart - current Execution State is : {}.",
PhasedTestManager.PHASED_TEST_LOG_PREFIX, Phases.getCurrentPhase());
}

Expand Down

0 comments on commit 3fc9904

Please sign in to comment.