Skip to content

Commit

Permalink
Hide "Trying to get this manpage" messages for asadmin --help
Browse files Browse the repository at this point in the history
Asadmin sets log level to FINE by default, unless --terse option is used. The "Trying to get this manpage" messages are useless for users, and there are many of them logged for by each asadmin command with --help option. Running asadmin with AS_DEBUG=true environment variable enables these messages if needed.
  • Loading branch information
OndroMih committed Sep 8, 2024
1 parent 832cf83 commit b4bd2e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public Object next() throws NoSuchElementException{
j = 0;
}
}
logger.log(Level.FINE, "Trying to get this manpage: {0}", result);
logger.log(Level.FINER, "Trying to get this manpage: {0}", result);
return result;
}

Expand Down

0 comments on commit b4bd2e2

Please sign in to comment.