Moved Integration Exceptions behind a Setting.

This commit is contained in:
AlgorithmX2
2014-02-09 12:35:35 -06:00
parent 2286be4998
commit db56892f0d
2 changed files with 10 additions and 2 deletions
+8
View File
@@ -50,4 +50,12 @@ public class AELog
e.printStackTrace();
}
}
public static void integration(Throwable exception)
{
if ( AEConfig.instance.isFeatureEnabled( AEFeature.IntegrationLogging ) )
{
error( exception );
}
}
}