Opened 15 years ago

Closed 15 years ago

Last modified 15 years ago

#6190 closed patch (fixed)

Patch to change verbose level of a running app.

Reported by: cizek@… Owned by: Isaac Richards
Priority: minor Milestone: 0.22
Component: MythTV - General Version: 0.21-fixes
Severity: medium Keywords:
Cc: Ticket locked: no

Description

The attached patch allows you to change the VERBOSE level of mythbackend or mythfrontend while it is running.

It works as follows:

mythbackend --setverbose record,network

is similar to starting mythbackend -v record,network, but will make the change to the currently running mythbackend instance.

For mythfrontend, this is changed by the network control interface using "query verbose" and "setverbose {verboselevel}" as follows:

MythFrontend Network Control
Type 'help' for usage information
---------------------------------
# query verbose
 important general pthread
# setverbose playback
OK
 Previous filter:  important general pthread
      New Filter:  important general playback

# 

This was done against 0.21-fixes. Hopefully it will work with trunk also.

-Bill

Attachments (1)

135-dynamiclog.all.patch (9.8 KB) - added by anonymous 15 years ago.

Download all attachments as: .zip

Change History (5)

Changed 15 years ago by anonymous

Attachment: 135-dynamiclog.all.patch added

comment:1 Changed 15 years ago by cpinkham

Resolution: fixed
Status: newclosed

(In [21396]) Add the ability to change the verbose level of a running mythfrontend and master mythbackend.

To change a frontend's verbose level, connect to the telnet/networkcontrol interface and issue "set verbose DEBUG-LEVEL" where DEBUG-LEVEL is the same list of network,database,upnp etc. that you can use from the command line with "-v".

To change the master backend's verbose level, run "mythbackend --setverbose DEBUG-LEVEL" where DEBUG-LEVEL is that same set of items that you use with "-v".

The change either back to the default debug level (currently "important,general") use the word "default" for the DEBUG-LEVEL.

Closes #6190 using a modified patch from Bill Cizek.

comment:2 Changed 15 years ago by cpinkham

(In [21397]) Build on [21396] a little bit. This patch changes the 'default' debug level to be whatever level the mythbackend/mythfrontend was started with. So, if you startup the backend with "-v none", then turn on network debugging with "--setverbose network", you can later revert back to the original level of 'none' by issuing "-v default".

References #6190.

comment:3 Changed 15 years ago by cpinkham

(In [21417]) Rework [21396] a little to move the VERBOSE message that shows the new verbose level outside of parse_verbose_arg(). This fixes an issue with the verbose level message being printed out before the command line arguments had been fully evaluated which could mean this message would be printed to stdout when the user wanted all output to go to a log file.

References #6190.

comment:4 Changed 15 years ago by stuartm

Milestone: unknown0.22
Note: See TracTickets for help on using tickets.