Change logger.info to logger.error

This commit is contained in:
Ron Levine 2015-01-05 14:14:02 -05:00
parent b4fda38922
commit 26c46ae05e
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ public class Sandbox {
}
catch(FileNotFoundException e)
{
logger.info("File "+filename + " cannot be found/read");
logger.error("File "+filename + " cannot be found/read");
return;
}
int idx = 0;