Skip to content

Commit

Permalink
Update SolrCommandRunner.java
Browse files Browse the repository at this point in the history
`info` to `warn`
  • Loading branch information
kltm authored Jan 18, 2018
1 parent d35e598 commit b2878b1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ else if (opts.nextEq("--noExitIfLoadFails")) {
// Ensure that legoCatalogs is defined, even is empty.
if( legoCatalogs == null ){
legoCatalogs = new ArrayList<File>();
LOG.info("Missing lego catalogs...");
LOG.warn("Missing lego catalogs...");
}

// Only proceed if our environment was well-defined.
Expand All @@ -573,7 +573,7 @@ else if (opts.nextEq("--noExitIfLoadFails")) {
LOG.error("Lego environment not well defined--skipping: "+details);
exit(-1);
}else{
LOG.info("Start Loading models, count: "+legoFiles.size());
LOG.warn("Start Loading models, count: "+legoFiles.size());
// Ready the environment for every pass.
ParserWrapper pw = new ParserWrapper();
// Add all of the catalogs; possibly none.
Expand Down

0 comments on commit b2878b1

Please sign in to comment.