// The LogDiagnosticCommand represents the 'VM.log' DCMD // that allows configuration of the logging at runtime. // It can be used to view or modify the current log configuration. // VM.log without additional arguments prints the usage description. // The 'list' argument will list all available log tags, // levels, decorators and currently configured log outputs. // Specifying 'disable' will disable logging completely. // The remaining arguments are used to set a log output to log everything // with the specified tags and levels using the given decorators. class LogDiagnosticCommand : public DCmdWithParser { protected:
DCmdArgument<char *> _output;
DCmdArgument<char *> _output_options;
DCmdArgument<char *> _what;
DCmdArgument<char *> _decorators;
DCmdArgument<bool> _disable;
DCmdArgument<bool> _list;
DCmdArgument<bool> _rotate;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.