We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f0296c commit 54e686cCopy full SHA for 54e686c
src/main/java/org/commonjava/util/gateway/config/ProxyConfiguration.java
@@ -98,7 +98,7 @@ public void load( boolean init )
98
File file = new File( USER_DIR, "config/" + PROXY_YAML );
99
if ( file.exists() )
100
{
101
- logger.debug( "Load proxy config from file, {}", file );
+ logger.trace( "Load proxy config from file, {}", file );
102
try(FileInputStream fis = new FileInputStream( file ))
103
104
doLoad( fis );
@@ -134,7 +134,7 @@ private void doLoad( InputStream res )
134
String nextStateHash = DigestUtils.sha256Hex( str ).toUpperCase();
135
if ( nextStateHash.equals( stateHash ) )
136
137
- logger.debug( "Skip, NO_CHANGE" );
+ logger.trace( "Skip, NO_CHANGE" );
138
return;
139
}
140
0 commit comments