Fix: remove JUL loglevel filtering from the agent
[lttng-ust.git] / liblttng-ust-jul / org / lttng / ust / jul / LTTngEvent.java
index a519f449e2c7ede19e7ceaa97ab30d48939361da..4eacb361288a550060808e1d5cf4143fe1dc34c5 100644 (file)
@@ -26,7 +26,7 @@ class LTTngLogLevel {
        public int level;
        public int type;
 
-       public LTTngLogLevel(String event_name, int level, int type) {
+       public LTTngLogLevel(int level, int type) {
                this.type = type;
                this.level = level;
        }
@@ -39,6 +39,6 @@ public class LTTngEvent {
 
        public LTTngEvent(String name, int loglevel, int loglevel_type) {
                this.name = name;
-               this.logLevel = new LTTngLogLevel(name, loglevel, loglevel_type);
+               this.logLevel = new LTTngLogLevel(loglevel, loglevel_type);
        }
 }
This page took 0.02417 seconds and 4 git commands to generate.