Skip to content

Commit

Permalink
fix variable name resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikeytewari-ul committed Jan 2, 2024
1 parent 3d922e9 commit ec4e652
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -375,9 +375,9 @@ public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment

// setup unloggedProcessorConfig
long defaultCounter = Long.parseLong(unlogged.loggingFrequency());
UnloggedLoggingLevel argumentSend = unlogged.argumentSend();
UnloggedLoggingLevel unloggedLoggingLevel = unlogged.unloggedLoggingLevel();
this.unloggedProcessorConfig.setDefaultCounter(defaultCounter);
this.unloggedProcessorConfig.setUnloggedLoggingLevel(argumentSend);
this.unloggedProcessorConfig.setUnloggedLoggingLevel(unloggedLoggingLevel);
}

if (roundEnv.processingOver()) {
Expand Down

0 comments on commit ec4e652

Please sign in to comment.