ilooner commented on a change in pull request #1296: DRILL-5365: Prevent plugin 
config from changing default fs. Make DrillFileSystem Immutable.
URL: https://github.com/apache/drill/pull/1296#discussion_r202485302
 
 

 ##########
 File path: 
exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/DrillFileSystem.java
 ##########
 @@ -102,13 +102,13 @@ public DrillFileSystem(Configuration fsConf, 
OperatorStats operatorStats) throws
     fsConf = new Configuration(fsConf);
     this.underlyingFs = FileSystem.get(fsConf);
 
-    logger.trace("Configuration for the DrillFileSystem {} {}, underlyingFs: 
{}",
+    logger.info("Configuration for the DrillFileSystem {} {}, underlyingFs: 
{}",
       fsConf.getTrimmed(FS_DEFAULT_NAME),
       fsConf.getTrimmed(FS_DEFAULT_NAME_KEY),
       this.underlyingFs.getUri());
 
-    if (logger.isTraceEnabled()) {
-      logger.trace("Who made me? {}", new RuntimeException("Who made me?"));
+    if (logger.isInfoEnabled()) {
+      logger.info("Who made me? {}", new RuntimeException("Who made me?"));
 
 Review comment:
   removed

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to