Default Contents - Ironstream_Hub - 1.3.1

Ironstream Hub Administration

Product type
Software
Portfolio
Integrate
Product family
Ironstream
Product
Ironstream > Ironstream Hub
Version
1.3.1
Language
English
ContentType
Administration
Product name
Ironstream Hub
Title
Ironstream Hub Administration
Topic type
Administration
First publish date
2022

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
    }
]