diff --git a/hapsigntool/hap_sign_tool/src/test/java/com/ohos/hapsigntoolcmd/ConcurrencyTest.java b/hapsigntool/hap_sign_tool/src/test/java/com/ohos/hapsigntoolcmd/ConcurrencyTest.java index d7dc5a5f3c7546e179de82188f46cfe8ef4361b4..a25be6d5bf80f3320c28e7d8903ea58551675e1d 100644 --- a/hapsigntool/hap_sign_tool/src/test/java/com/ohos/hapsigntoolcmd/ConcurrencyTest.java +++ b/hapsigntool/hap_sign_tool/src/test/java/com/ohos/hapsigntoolcmd/ConcurrencyTest.java @@ -76,7 +76,7 @@ public class ConcurrencyTest { private static final File TMP_DIR = new File("concurrentTest"); private static final List tmpSource = new ArrayList<>(); - private static final LogUtils log = new LogUtils(ConcurrencyTest.class); + private static final LogUtils LOG = new LogUtils(ConcurrencyTest.class); /** * before test @@ -153,7 +153,7 @@ public class ConcurrencyTest { isFinished = countDownLatch.await(KEEP_ALIVE_TIMES, TimeUnit.SECONDS); } catch (InterruptedException e) { isFinished = false; - log.error("concurrency test interrupted", e); + LOG.error("concurrency test interrupted", e); } if (!isFinished) { executor.shutdownNow();