SYNTAX

    cloggerconfig [options] [<tag_name>] [<enabled_mask>]


OPTIONS

-h (--help) bool

Display help.

-g (--set-global) uint

Set global options. See description below.

-p (--persist) bool

Persist any settings that are changed during this call, by calling RClogger::PersistSettings at the end.

-s (--reset) bool

Resets all settings, by calling RClogger::ResetSettings.

-o (--set-rotate) uint

Set rotate options. See description below.

-r (--rotate) bool

Rotates the log file, for more info see RClogger::Rotate.

-f (--follow) bool

Displays the logging in the console as it is written. Note that this only shows logging that occurs after the command is invoked. To look at what's already been logged you need to examine the log file c:\Logs\clogger.txt directly. Currently this option has to switch on EBufferLog to function correctly and it dosen't switch it off again at the end.

-n (--num-buffers) int

Sets the number of buffers to use (if buffered logging is enabled).

-b (--buffer-size) uint

Sets the buffer size in bytes (if buffered logging is enabled).

-w (--wipe) bool

Erases everything in c:\Logs\clogger.txt, without rotating.

-d (--rdebug) bool

Switches on rdebug redirection and prints to console (roughly equivalent to --set-global 8 --follow).

-a (--backup) bool

Saves the current persisted clogger settings to the removable media.

-e (--restore) bool

Restores settings saved with --backup.

-D (--disable-all) bool

Disable all the currently registered tags.

-E (--enable-all) bool

Enable all the currently registered tags.


ARGUMENTS

[<tag_name>]

Specify a particular tag name to get or set. [string]

[<enabled_mask>]

The bitmask to set. If not specified, the curent value is shown instead. [uint]


DESCRIPTION

Gets and sets the configuration of the Clogger server.

If no arguments are given, lists all settings. See \epoc32\include\clogger.h for more information about the RClogger interface, or see clogger in the fshell documentation. Some of the 'magic numbers' you may wish to use are documented here as well.

Rotate options (for --set-rotate), can be ORed together:

        1  ECopyRotatedToExternalMedia
        4  EAutoRotateAtStartup
        8  ECompressRotatedLogs

Global options (for --set-global), can be ORed together:

        1  EBufferLog
        2  EMirrorToRDebugPrint
        4  EMirrorToBluetooth
        8  ERedirectRDebugPrintToClogger
        16 EDisableFileWriter


COPYRIGHT

Copyright (c) 2007-2010 Accenture. All rights reserved.