Re: [nox-dev] Disable line display - 00044|openflow-event|DBG:received packet-in event from 000000000001

2010-11-28 Thread K Singh
I have the normal command line for running my project as ./nox_core -v -i ptcp: pyopenflowprj so i modified the line as ./nox_core -v -v openflow-event:ANY:WARN -i ptcp: pyopenflowprj It doesnt work and give me error message "00017|nox|ERR:Application 'openflow-event:ANY:WARN' description not found

Re: [nox-dev] Disable line display - 00044|openflow-event|DBG:received packet-in event from 000000000001

2010-11-28 Thread Murphy McCauley
It's in openflow-event.cc, but you should also be able to just disable openflow-event module debug messages with something like the following: ./nox_core -v -v openflow-event:ANY:WARN The first -v turns on verbose mode in general (something much like -v ANY:console:DEBUG), the second -v explici

Re: [nox-dev] Disable line display - 00044|openflow-event|DBG:received packet-in event from 000000000001

2010-11-28 Thread kk yap
This is done in a C/C++ file. Anyway, what about running NOX in non-verbose mode. For the component you want verbosity, try ./nox_core --verbose="x:ANY:DBG" --verbose="y":ANY:DBG" x y This will put only x and y in verbose mode. Regards KK On 28 November 2010 00:11, K Singh wrote: > Is there

[nox-dev] Disable line display - 00044|openflow-event|DBG:received packet-in event from 000000000001

2010-11-28 Thread K Singh
Is there a way to disable the display of lines in pyswitch.py like below: 00044|openflow-event|DBG:received packet-in event from 0001 00039|openflow-event|DBG:received flow expired event from 0001 I searched in core.py also but couldn't where i can comment this line. -- Regards,