Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-util/src/main/java/org/eclipse/jetty/util/log/Logger.java')
-rw-r--r--jetty-util/src/main/java/org/eclipse/jetty/util/log/Logger.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/jetty-util/src/main/java/org/eclipse/jetty/util/log/Logger.java b/jetty-util/src/main/java/org/eclipse/jetty/util/log/Logger.java
index afe405cc71..a6a1647c72 100644
--- a/jetty-util/src/main/java/org/eclipse/jetty/util/log/Logger.java
+++ b/jetty-util/src/main/java/org/eclipse/jetty/util/log/Logger.java
@@ -85,6 +85,15 @@ public interface Logger
* @param args the optional arguments
*/
public void debug(String msg, Object... args);
+
+
+ /**
+ * Formats and logs at debug level.
+ * avoids autoboxing of integers
+ * @param msg the formatting string
+ * @param args the optional arguments
+ */
+ public void debug(String msg, long value);
/**
* Logs the given Throwable information at debug level

Back to the top