mirror of https://github.com/apache/nifi.git
NIFI-79 - Introduces the ability to set Bulletin Level to NONE
This commit is contained in:
parent
457df93dd6
commit
a7bf683a0d
|
@ -23,5 +23,6 @@ public enum LogLevel {
|
||||||
INFO,
|
INFO,
|
||||||
WARN,
|
WARN,
|
||||||
ERROR,
|
ERROR,
|
||||||
FATAL;
|
FATAL,
|
||||||
|
NONE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,6 +16,15 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.nifi.logging.repository;
|
package org.apache.nifi.logging.repository;
|
||||||
|
|
||||||
|
import org.apache.nifi.logging.ComponentLog;
|
||||||
|
import org.apache.nifi.logging.LogLevel;
|
||||||
|
import org.apache.nifi.logging.LogMessage;
|
||||||
|
import org.apache.nifi.logging.LogObserver;
|
||||||
|
import org.apache.nifi.logging.LogRepository;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.slf4j.helpers.MessageFormatter;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
@ -23,16 +32,6 @@ import java.util.Map;
|
||||||
import java.util.concurrent.locks.Lock;
|
import java.util.concurrent.locks.Lock;
|
||||||
import java.util.concurrent.locks.ReentrantReadWriteLock;
|
import java.util.concurrent.locks.ReentrantReadWriteLock;
|
||||||
|
|
||||||
import org.apache.nifi.logging.ComponentLog;
|
|
||||||
import org.apache.nifi.logging.LogLevel;
|
|
||||||
import org.apache.nifi.logging.LogMessage;
|
|
||||||
import org.apache.nifi.logging.LogObserver;
|
|
||||||
import org.apache.nifi.logging.LogRepository;
|
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
import org.slf4j.helpers.MessageFormatter;
|
|
||||||
|
|
||||||
public class StandardLogRepository implements LogRepository {
|
public class StandardLogRepository implements LogRepository {
|
||||||
|
|
||||||
public static final int DEFAULT_MAX_CAPACITY_PER_LEVEL = 10;
|
public static final int DEFAULT_MAX_CAPACITY_PER_LEVEL = 10;
|
||||||
|
@ -118,8 +117,8 @@ public class StandardLogRepository implements LogRepository {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// at this point, the observer should have been found
|
// at this point, the LogLevel must be NONE since we don't register observers for NONE
|
||||||
throw new IllegalStateException("The specified observer identifier does not exist.");
|
return LogLevel.NONE;
|
||||||
} finally {
|
} finally {
|
||||||
readLock.unlock();
|
readLock.unlock();
|
||||||
}
|
}
|
||||||
|
@ -136,12 +135,15 @@ public class StandardLogRepository implements LogRepository {
|
||||||
|
|
||||||
final LogLevel[] allLevels = LogLevel.values();
|
final LogLevel[] allLevels = LogLevel.values();
|
||||||
for (int i = minimumLevel.ordinal(); i < allLevels.length; i++) {
|
for (int i = minimumLevel.ordinal(); i < allLevels.length; i++) {
|
||||||
Collection<LogObserver> collection = observers.get(allLevels[i]);
|
// no need to register an observer for NONE since that level will never be logged to by a component
|
||||||
if (collection == null) {
|
if (i != LogLevel.NONE.ordinal()) {
|
||||||
collection = new ArrayList<>();
|
Collection<LogObserver> collection = observers.get(allLevels[i]);
|
||||||
observers.put(allLevels[i], collection);
|
if (collection == null) {
|
||||||
|
collection = new ArrayList<>();
|
||||||
|
observers.put(allLevels[i], collection);
|
||||||
|
}
|
||||||
|
collection.add(observer);
|
||||||
}
|
}
|
||||||
collection.add(observer);
|
|
||||||
}
|
}
|
||||||
observerLookup.put(observerIdentifier, observer);
|
observerLookup.put(observerIdentifier, observer);
|
||||||
} finally {
|
} finally {
|
||||||
|
|
|
@ -345,6 +345,7 @@
|
||||||
<xs:enumeration value="WARN"></xs:enumeration>
|
<xs:enumeration value="WARN"></xs:enumeration>
|
||||||
<xs:enumeration value="ERROR"></xs:enumeration>
|
<xs:enumeration value="ERROR"></xs:enumeration>
|
||||||
<xs:enumeration value="FATAL"></xs:enumeration>
|
<xs:enumeration value="FATAL"></xs:enumeration>
|
||||||
|
<xs:enumeration value="NONE"></xs:enumeration>
|
||||||
</xs:restriction>
|
</xs:restriction>
|
||||||
</xs:simpleType>
|
</xs:simpleType>
|
||||||
|
|
||||||
|
|
|
@ -590,6 +590,9 @@
|
||||||
}, {
|
}, {
|
||||||
text: 'ERROR',
|
text: 'ERROR',
|
||||||
value: 'ERROR'
|
value: 'ERROR'
|
||||||
|
}, {
|
||||||
|
text: 'NONE',
|
||||||
|
value: 'NONE'
|
||||||
}]
|
}]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue