Skip to main content

Excluding types of data

You can exclude certain types of data from idmsuite.log by editing idmlogsvc.cfg to include an ExcludeFromMainLog KVGroup.

To do this, on the Bravura Security Fabric server:

  1. Stop the Logging Service.

  2. Create a backup copy of idmlogsvc.cfg.

  3. Open idmlogsvc.cfg using a text editor.

  4. Add an ExcludedFromMainLog KVGroup with the following syntax:

    ExcludedFromMainLog = {
    <module name>[compare operator] = <log level name>;
    ...
    };

    Compare operators are:

    : equal the level (omitted)

    > equal or higher than the level

    < equal or lower than the level

    ! not the level

You can use * as a wild card for both the module name and log level. For example:

ExcludedFromMainLog = {
*: = per_lsw;
updinst.exe>=info;
psupdate.exe< = info;
iddb.exe! = verbose;
mobworker.exe = ⋆;
};