Skip to content

Commit

Permalink
Make config change log as trace (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruhan1 authored Aug 16, 2023
1 parent 6f0296c commit 54e686c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void load( boolean init )
File file = new File( USER_DIR, "config/" + PROXY_YAML );
if ( file.exists() )
{
logger.debug( "Load proxy config from file, {}", file );
logger.trace( "Load proxy config from file, {}", file );
try(FileInputStream fis = new FileInputStream( file ))
{
doLoad( fis );
Expand Down Expand Up @@ -134,7 +134,7 @@ private void doLoad( InputStream res )
String nextStateHash = DigestUtils.sha256Hex( str ).toUpperCase();
if ( nextStateHash.equals( stateHash ) )
{
logger.debug( "Skip, NO_CHANGE" );
logger.trace( "Skip, NO_CHANGE" );
return;
}

Expand Down

0 comments on commit 54e686c

Please sign in to comment.