Skip to content

Commit 0cbb3dd

Browse files
committed
Fix: AndroidLogger is not abstract and does not override abstract method isEnabled
(cherry picked from commit 466e167)
1 parent 497331f commit 0cbb3dd

File tree

1 file changed

+1
-1
lines changed
  • common/src/main/java/com/genexus/diagnostics/core

1 file changed

+1
-1
lines changed

common/src/main/java/com/genexus/diagnostics/core/ILogger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public interface ILogger {
7777

7878
boolean isTraceEnabled();
7979

80-
boolean isEnabled(int logLevel);
80+
default boolean isEnabled(int logLevel) { return false; }
8181

8282
//boolean isEnabled(int logLevel, String topic);
8383

0 commit comments

Comments
 (0)