Skip to content

Commit 0c59c11

Browse files
authored
Apply suggestions from code review
1 parent a550287 commit 0c59c11

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

framework/ipc/src/test/java/org/apache/cloudstack/framework/codestyle/AsyncSampleEventDrivenStyleCaller.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public void MethodThatWillCallAsyncMethod() {
5757
String result = future.get();
5858
Assert.assertEquals(result, vol);
5959
} catch (InterruptedException | ExecutionException e) {
60-
logger.error(e);
60+
logger.info(e);
6161
}
6262
}
6363

@@ -87,7 +87,7 @@ public String getResult() {
8787
try {
8888
this.wait();
8989
} catch (InterruptedException e) {
90-
logger.error(e);
90+
logger.info(e);
9191
}
9292
}
9393
return this.result;

0 commit comments

Comments
 (0)