Commit 26833aeb by Nepxion

修改异常输出

parent f18b9d51
...@@ -42,7 +42,7 @@ public abstract class LocalConfigLoader implements ConfigLoader { ...@@ -42,7 +42,7 @@ public abstract class LocalConfigLoader implements ConfigLoader {
return IOUtils.toString(inputStream, DiscoveryConstant.ENCODING_UTF_8); return IOUtils.toString(inputStream, DiscoveryConstant.ENCODING_UTF_8);
} catch (Exception e) { } catch (Exception e) {
LOG.warn(e.getMessage() + ", ignore to load..."); LOG.warn("File [{}] isn't found or invalid, ignore to load...", path);
return null; return null;
} finally { } finally {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment