mirror of
https://github.com/aljazceru/signal-cli.git
synced 2025-12-18 06:34:25 +01:00
Fix logger names
This commit is contained in:
@@ -39,7 +39,7 @@ import java.util.stream.Collectors;
|
|||||||
|
|
||||||
public class Cli {
|
public class Cli {
|
||||||
|
|
||||||
private final static Logger logger = LoggerFactory.getLogger(Main.class);
|
private final static Logger logger = LoggerFactory.getLogger(Cli.class);
|
||||||
|
|
||||||
private final Namespace ns;
|
private final Namespace ns;
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ import java.util.concurrent.TimeUnit;
|
|||||||
|
|
||||||
public class DaemonCommand implements MultiLocalCommand {
|
public class DaemonCommand implements MultiLocalCommand {
|
||||||
|
|
||||||
private final static Logger logger = LoggerFactory.getLogger(ReceiveCommand.class);
|
private final static Logger logger = LoggerFactory.getLogger(DaemonCommand.class);
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void attachToSubparser(final Subparser subparser) {
|
public void attachToSubparser(final Subparser subparser) {
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ import java.util.concurrent.TimeoutException;
|
|||||||
|
|
||||||
public class ProvisioningManager {
|
public class ProvisioningManager {
|
||||||
|
|
||||||
private final static Logger logger = LoggerFactory.getLogger(Manager.class);
|
private final static Logger logger = LoggerFactory.getLogger(ProvisioningManager.class);
|
||||||
|
|
||||||
private final PathConfig pathConfig;
|
private final PathConfig pathConfig;
|
||||||
private final SignalServiceConfiguration serviceConfiguration;
|
private final SignalServiceConfiguration serviceConfiguration;
|
||||||
|
|||||||
Reference in New Issue
Block a user