Skip to content

Commit

Permalink
Get logger instance at startup
Browse files Browse the repository at this point in the history
  • Loading branch information
VishalNehra committed Jun 15, 2022
1 parent 7c10c62 commit aa80dc7
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
reportSenderFactoryClasses = AcraReportSenderFactory.class)
public class AppConfig extends GlideApplication {

private static final Logger LOG = LoggerFactory.getLogger(AppConfig.class);
private Logger log = null;

private UtilitiesProvider utilsProvider;
private RequestQueue requestQueue;
Expand Down Expand Up @@ -107,6 +107,7 @@ public void onCreate() {
// disabling file exposure method check for api n+
StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder();
StrictMode.setVmPolicy(builder.build());
log = LoggerFactory.getLogger(AppConfig.class);
}

@Override
Expand Down Expand Up @@ -256,7 +257,9 @@ protected void initACRA() {
.build();
ACRA.init(this, acraConfig);
} catch (final ACRAConfigurationException ace) {
LOG.warn("failed to initialize ACRA", ace);
if (log != null) {
log.warn("failed to initialize ACRA", ace);
}
ErrorActivity.reportError(
this,
ace,
Expand Down

0 comments on commit aa80dc7

Please sign in to comment.