Skip to content

Commit

Permalink
logs around variable don't directly print null
Browse files Browse the repository at this point in the history
  • Loading branch information
Giorgio Trettenero committed Dec 11, 2024
1 parent 97cd110 commit efc6414
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,10 @@ public <R> R processRequest(
String clientAppName = MetacatContextManager.getContext().getClientAppName();
if (clientAppName == null) {
log.info("------------------------------------------------");
log.info(clientAppName);
log.info(MetacatContextManager.getContext().toString());
clientAppName = "I SET IT NULL";
log.info(clientAppName);
log.info(MetacatContextManager.getContext().toString());
log.info("------------------------------------------------");

}
Expand Down

0 comments on commit efc6414

Please sign in to comment.