Skip to content
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #653 from adamcoulthard/main
Browse files Browse the repository at this point in the history
Update messages to be errors
  • Loading branch information
techcobweb authored Sep 30, 2024
2 parents e2a014e + 9b23351 commit 5999762
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ private void generateEnvironment(GherkinTest testObject, ITestRunManagers manage
managers.provisionGenerate();
createEnvironment(testObject, managers);
} catch (Exception e) {
logger.info("Provision Generate failed", e);
logger.error("Provision Generate failed", e);
if (e instanceof FrameworkResourceUnavailableException) {
isResourcesAvailable = false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ private void generateEnvironment(TestClassWrapper testClassWrapper, ITestRunMana
managers.provisionGenerate();
createEnvironment(testClassWrapper, managers, dss, runName, isRunOK);
} catch (Exception e) {
logger.info("Provision Generate failed", e);
logger.error("Provision Generate failed", e);
if (e instanceof FrameworkResourceUnavailableException) {
this.isResourcesAvailable = false;
}
Expand Down

0 comments on commit 5999762

Please sign in to comment.