Skip to content

Commit

Permalink
Merge pull request #2456 from yma96/master
Browse files Browse the repository at this point in the history
Add debug log for GlobalProxyConfig producer
  • Loading branch information
yma96 authored Aug 15, 2024
2 parents 05ebfee + 72ec0a1 commit 5927f96
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,14 @@ public List<String> getAllowHttpJobTypes()
{
return list;
}

@Override
public String toString()
{
return String.format( "GlobalProxyConfig [host=%s, port=%s, allowHttpJobTypes=%s]", getHost(),
getPort(), allowTypes );
}
};
logger.debug( "Global proxy config produced: {}", globalProxyConfig );
}
}

0 comments on commit 5927f96

Please sign in to comment.