Removed Localization Stuff.

Added Logging Option.
Logging of Exceptions is now done via AELogger
This commit is contained in:
AlgorithmX2
2014-02-07 14:37:22 -06:00
parent e18dac1437
commit b57804be06
49 changed files with 212 additions and 195 deletions
+5 -5
View File
@@ -86,7 +86,7 @@ public class ApiPart implements IPartHelper
}
catch (Exception e)
{
e.printStackTrace();
AELog.error( e );
System.exit( 1 );
}
return clazz;
@@ -110,7 +110,7 @@ public class ApiPart implements IPartHelper
}
catch (Throwable e)
{
e.printStackTrace();
AELog.error( e );
}
return null;
@@ -160,7 +160,7 @@ public class ApiPart implements IPartHelper
}
catch (ClassNotFoundException e)
{
e.printStackTrace();
AELog.error( e );
}
Class myCLass;
@@ -232,7 +232,7 @@ public class ApiPart implements IPartHelper
}
catch (Throwable t)
{
t.printStackTrace();
AELog.error( t );
}
for (MethodNode mn : n.methods)
@@ -298,7 +298,7 @@ public class ApiPart implements IPartHelper
catch (Throwable t)
{
AELog.severe( "Layer: " + n.name + " Failed." );
t.printStackTrace();
AELog.error( t );
}
roots.put( fullPath, nclass );