Skip to content

Commit 54e686c

Browse files
authored
Make config change log as trace (#79)
1 parent 6f0296c commit 54e686c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/commonjava/util/gateway/config/ProxyConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public void load( boolean init )
9898
File file = new File( USER_DIR, "config/" + PROXY_YAML );
9999
if ( file.exists() )
100100
{
101-
logger.debug( "Load proxy config from file, {}", file );
101+
logger.trace( "Load proxy config from file, {}", file );
102102
try(FileInputStream fis = new FileInputStream( file ))
103103
{
104104
doLoad( fis );
@@ -134,7 +134,7 @@ private void doLoad( InputStream res )
134134
String nextStateHash = DigestUtils.sha256Hex( str ).toUpperCase();
135135
if ( nextStateHash.equals( stateHash ) )
136136
{
137-
logger.debug( "Skip, NO_CHANGE" );
137+
logger.trace( "Skip, NO_CHANGE" );
138138
return;
139139
}
140140

0 commit comments

Comments
 (0)