Default Contents

The default contents of logsettings.json, which writes messages to two files, userlog.txt and trace.txt, and to Stdout, are:

[
    {
        "LogType": "User",
        "LogLevel": "Info",
        "Format": "Text",
        "OutputTarget": "File",
        "IncludeMethodName": false,
        "LogFileSettings": {
            "FileName": "userlog.txt",
            "MaxSize": 100,
            "MaxBackups": 10,
            "MaxAge": 28,
            "Compress": true
        }
    },
    {
        "LogType": "Trace",
        "LogLevel": "Info",
        "Format": "Text",
        "OutputTarget": "File",
        "IncludeMethodName": true,
        "LogFileSettings": {
            "FileName": "trace.txt",
            "MaxSize": 100,
            "MaxBackups": 10,
            "MaxAge": 28,
            "Compress": true
        }
    },
    {
        "LogType": "Trace",
        "LogLevel": "Info",
        "Format": "Text",
        "OutputTarget": "Stdout",
        "IncludeMethodName": true
    }
]

The default contents of ui_logsettings.json are:

[
    {
        "LogType": "User",
        "LogLevel": "Info",
        "Format": "Text",
        "OutputTarget": "File",
        "IncludeMethodName": false,
        "LogFileSettings": {
            "FileName": "ui_userlog.txt",
            "MaxSize": 100,
            "MaxBackups": 10,
            "MaxAge": 28,
            "Compress": true
        }
    },
    {
        "LogType": "Trace",
        "LogLevel": "Info",
        "Format": "Text",
        "OutputTarget": "File",
        "IncludeMethodName": true,
        "LogFileSettings": {
            "FileName": "ui_trace.txt",
            "MaxSize": 100,
            "MaxBackups": 10,
            "MaxAge": 28,
            "Compress": true
        }
    },
    {
        "LogType": "Trace",
        "LogLevel": "Info",
        "Format": "Text",
        "OutputTarget": "Stdout",
        "IncludeMethodName": true
    }
]

The default contents of portal_logsettings.json are:

[
    {
        "LogType": "User",
        "LogLevel": "Info",
        "Format": "Text",
        "OutputTarget": "File",
        "IncludeMethodName": false,
        "LogFileSettings": {
            "FileName": "portal_userlog.txt",
            "MaxSize": 100,
            "MaxBackups": 10,
            "MaxAge": 28,
            "Compress": true
        }
    },
    {
        "LogType": "Trace",
        "LogLevel": "Info",
        "Format": "Text",
        "OutputTarget": "File",
        "IncludeMethodName": true,
        "LogFileSettings": {
            "FileName": "portal_trace.txt",
            "MaxSize": 100,
            "MaxBackups": 10,
            "MaxAge": 28,
            "Compress": true
        }
    },
    {
        "LogType": "Trace",
        "LogLevel": "Info",
        "Format": "Text",
        "OutputTarget": "Stdout",
        "IncludeMethodName": true
    }
]