Print messages logged during a profile switch to stderr (this affects
the "profile" and "auto_profile" commands). By default messages with
log level ERROR and higher are printed. This can be changed using the
--loglevel command line option. Valid values are debug, info, warn,
error, console, none ('none' can be used to disable the log printing).
E.g.:
tuned-adm --loglevel info profile powersave
Log printing cannot be used when --async is used.
Resolves: rhbz#1538745
Signed-off-by: Ondřej Lysoněk <olysonek@redhat.com>
10 lines
544 B
Text
10 lines
544 B
Text
* Implement a configurable policy which determines how many (and how big)
|
|
log buffers can a user with a given UID create using the log_capture_start
|
|
DBus call.
|
|
* Destroy the log handler created by log_capture_start() when the caller
|
|
disconnects from DBus.
|
|
* Use only one timer for destroying log handlers at a time. Create a new
|
|
timer as necessary when the old timer fires.
|
|
* Handle signals in tuned-adm so that the log_capture_finish() DBus call
|
|
is called even if we receive a signal. This may require some rewriting
|
|
of tuned-adm.
|