Skip to content

Commit

Permalink
#72, fix the invalid use of getTimer() return value
Browse files Browse the repository at this point in the history
Signed-off-by: Eclipse CDI Bot <cdi-bot@eclipse.org>
  • Loading branch information
starksm64 authored and eclipse-cdi-bot committed Jan 13, 2022
1 parent c4e7d87 commit 1bfacdb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ public class MyInterceptor {
@AroundTimeout
private Object aroundTimeout(InvocationContext ctx)
throws Exception {
logger.info("processing: " + ctx.getTimer().getInfo());
logger.info("processing: " + ctx.getTimer());
return ctx.proceed();
...
}
Expand Down

0 comments on commit 1bfacdb

Please sign in to comment.