Skip to content

Commit

Permalink
Merge pull request #5 from ashutoshebi/change-in-logger-factory
Browse files Browse the repository at this point in the history
Logger factory changes
  • Loading branch information
ashutoshebi authored May 30, 2020
2 parents c29439d + cc92c6d commit 13d3eee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

public class PGPUtils {

private static final Logger LOGGER = LoggerFactory.getLogger(PGPCryptography.class);
private static final Logger LOGGER = LoggerFactory.getLogger(PGPUtils.class);

private static final int KEY_FLAGS = 27;
private static final List<Integer> MASTER_KEY_CERTIFICATION_TYPES = Arrays.asList(PGPSignature.POSITIVE_CERTIFICATION,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

public class EgaCryptorCommandLinerRunner implements CommandLineRunner {

private static final Logger LOGGER = LoggerFactory.getLogger(PGPCryptography.class);
private static final Logger LOGGER = LoggerFactory.getLogger(EgaCryptorCommandLinerRunner.class);

private final ITaskExecutorService taskExecutorService;
private final IFileDiscoveryService fileDiscoveryService;
Expand Down Expand Up @@ -116,4 +116,4 @@ public int getValue() {
return value;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import java.util.stream.Collectors;

public class TaskExecutorService implements ITaskExecutorService {
private static final Logger LOGGER = LoggerFactory.getLogger(FileDiscoveryService.class);
private static final Logger LOGGER = LoggerFactory.getLogger(TaskExecutorService.class);
private final CryptographyPipeline cryptographyPipeline;

public TaskExecutorService(final CryptographyPipeline cryptographyPipeline) {
Expand Down

0 comments on commit 13d3eee

Please sign in to comment.