Removed some dead code in SCinter
Loglisten showed to much stuff, no filtering. Filtering added.
This commit is contained in:
@ -28,6 +28,11 @@ static void LogListenCallback(unsigned int severity, const char *timeStamp,
|
||||
ListenEntry current;
|
||||
int status, cleanupNeeded = 0;
|
||||
|
||||
if(logFilter(severity,subsystem,message) == 1) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
status = LLDnodePtr2First(listenerList);
|
||||
while(status != 0){
|
||||
LLDnodeDataTo(listenerList,¤t);
|
||||
|
Reference in New Issue
Block a user