libzypp 17.37.17
|
Maintain logfile related options. More...
#include <zypp-core/base/LogControl.h>
Classes | |
struct | LineFormater |
If you want to format loglines by yourself, derive from this, and overload format . More... | |
struct | TmpExcessive |
Turn on excessive logging for the lifetime of this object. More... | |
struct | TmpLineWriter |
Exchange LineWriter for the lifetime of this object. More... |
Public Types | |
using | LineWriter = log::LineWriter |
Public Member Functions | |
void | setLineFormater (const shared_ptr< LineFormater > &formater_r) |
Assign a LineFormater. | |
void | enableLogForwardingMode (bool enable=true) |
void | logfile (const Pathname &logfile_r) |
Set path for the logfile. | |
void | logfile (const Pathname &logfile_r, mode_t mode_r) |
void | logNothing () |
Turn off logging. | |
void | logToStdErr () |
Log to std::err. | |
void | emergencyShutdown () |
will cause the log thread to exit and flush all sockets | |
void | logRawLine (std::string &&line) |
will push a line to the logthread without formatting it | |
shared_ptr< LineWriter > | getLineWriter () const |
Get the current LineWriter. | |
void | setLineWriter (const shared_ptr< LineWriter > &writer_r) |
Assign a LineWriter. |
Static Public Member Functions | |
static LogControl | instance () |
Singleton access. | |
static void | notifyFork () |
This will completely disable logging. |
Private Member Functions | |
LogControl () | |
Default ctor: Singleton. |
Friends | |
std::ostream & | operator<< (std::ostream &str, const LogControl &obj) |
Related Symbols | |
(Note that these are not member symbols.) | |
std::ostream & | operator<< (std::ostream &str, const LogControl &obj) ZYPP_API |
Stream output. |
Maintain logfile related options.
Definition at line 96 of file LogControl.h.
Definition at line 107 of file LogControl.h.
|
inlineprivate |
Default ctor: Singleton.
Definition at line 215 of file LogControl.h.
|
inlinestatic |
Singleton access.
Definition at line 102 of file LogControl.h.
void zypp::base::LogControl::setLineFormater | ( | const shared_ptr< LineFormater > & | formater_r | ) |
Assign a LineFormater.
If you want to format loglines by yourself. NULL installs the default formater.
Definition at line 897 of file LogControl.cc.
void zypp::base::LogControl::enableLogForwardingMode | ( | bool | enable = true | ) |
Sets a special log mode that uses the ppid in the log output and always shows the thread name (if the default formatter is used). This is only used by internal zypp tools that directly want to log into the parents logfile.
Definition at line 905 of file LogControl.cc.
void zypp::base::LogControl::logfile | ( | const Pathname & | logfile_r | ) |
Set path for the logfile.
Permission for logfiles is set to 0640 unless an explicit mode_t value is given. An empty pathname turns off logging. "-" logs to std::err.
if | logfile_r is not usable. |
Definition at line 862 of file LogControl.cc.
void zypp::base::LogControl::logfile | ( | const Pathname & | logfile_r, |
mode_t | mode_r ) |
Definition at line 871 of file LogControl.cc.
void zypp::base::LogControl::logNothing | ( | ) |
Turn off logging.
Definition at line 910 of file LogControl.cc.
void zypp::base::LogControl::logToStdErr | ( | ) |
Log to std::err.
Definition at line 918 of file LogControl.cc.
void zypp::base::base::LogControl::emergencyShutdown | ( | ) |
will cause the log thread to exit and flush all sockets
Definition at line 926 of file LogControl.cc.
|
static |
This will completely disable logging.
It is supposed to be called in the child process after fork() was called to shut down all logging completely.
Definition at line 931 of file LogControl.cc.
void zypp::base::LogControl::logRawLine | ( | std::string && | line | ) |
will push a line to the logthread without formatting it
Definition at line 936 of file LogControl.cc.
shared_ptr< LogControl::LineWriter > zypp::base::LogControl::getLineWriter | ( | ) | const |
Get the current LineWriter.
Definition at line 880 of file LogControl.cc.
void zypp::base::LogControl::setLineWriter | ( | const shared_ptr< LineWriter > & | writer_r | ) |
Assign a LineWriter.
If you want to log the (formated) loglines by yourself. NULL turns off logging (same as logNothing)
Definition at line 889 of file LogControl.cc.
|
friend |
Definition at line 966 of file LogControl.cc.
|
Stream output.
Definition at line 966 of file LogControl.cc.