mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Improved debug output slightly.
This commit is contained in:
parent
e5af2b843b
commit
51b9d5ba38
1 changed files with 1 additions and 0 deletions
|
@ -125,6 +125,7 @@ public class Main {
|
||||||
File[] customSetDirectories = customSetsFolder.listFiles();
|
File[] customSetDirectories = customSetsFolder.listFiles();
|
||||||
if(customSetDirectories != null) for(File f : customSetDirectories) if(f.isDirectory())
|
if(customSetDirectories != null) for(File f : customSetDirectories) if(f.isDirectory())
|
||||||
try {
|
try {
|
||||||
|
logger.info(" - Loading custom set module from "+f);
|
||||||
customSets.add(CustomSetLoader.loadCustomSet(f));
|
customSets.add(CustomSetLoader.loadCustomSet(f));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
logger.error("Could not load custom package in "+f+"!", e);
|
logger.error("Could not load custom package in "+f+"!", e);
|
||||||
|
|
Loading…
Reference in a new issue