mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Merge branch 'logger-names' into 'master'
Use full class names for loggers See merge request briar/briar!881
This commit is contained in:
@@ -40,7 +40,7 @@ public class BridgeTest extends BrambleTestCase {
|
||||
private final static long TIMEOUT = SECONDS.toMillis(23);
|
||||
|
||||
private final static Logger LOG =
|
||||
Logger.getLogger(BridgeTest.class.getSimpleName());
|
||||
Logger.getLogger(BridgeTest.class.getName());
|
||||
|
||||
@Inject
|
||||
NetworkManager networkManager;
|
||||
|
||||
@@ -17,7 +17,7 @@ import org.briarproject.briar.android.activity.ActivityComponent;
|
||||
@ParametersNotNullByDefault
|
||||
public class ErrorFragment extends BaseFragment {
|
||||
|
||||
private static final String TAG = ErrorFragment.class.getSimpleName();
|
||||
private static final String TAG = ErrorFragment.class.getName();
|
||||
|
||||
private static final String ERROR_MSG = "errorMessage";
|
||||
|
||||
|
||||
@@ -56,7 +56,7 @@ class IntroduceeProtocolEngine
|
||||
extends AbstractProtocolEngine<IntroduceeSession> {
|
||||
|
||||
private final static Logger LOG =
|
||||
Logger.getLogger(IntroduceeProtocolEngine.class.getSimpleName());
|
||||
Logger.getLogger(IntroduceeProtocolEngine.class.getName());
|
||||
|
||||
private final IntroductionCrypto crypto;
|
||||
private final KeyManager keyManager;
|
||||
|
||||
Reference in New Issue
Block a user