Skip to content

Commit

Permalink
Replace getClass() which uses reflection with explicit class (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotykim authored Jul 14, 2017
1 parent 4e7b715 commit 4bf2672
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class DatafileService extends Service {
static final String DATAFILE_VERSION = "3";

@NonNull private final IBinder binder = new LocalBinder();
Logger logger = LoggerFactory.getLogger(getClass());
Logger logger = LoggerFactory.getLogger(DatafileService.class);
private boolean isBound;

/**
Expand Down

0 comments on commit 4bf2672

Please sign in to comment.