prologger 0.3.0

A production-grade, ergonomic Rust logging library with colored output, file rotation, and structured formatting.
Documentation
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        
        {
            "type": "lc3",
            "request": "launch",
            "name": "LC-3 Debugger",
            "program": "${workspaceFolder}/${command:AskForProgramName}"
        },
        {
            "type": "cobol",
            "request": "launch",
            "name": "COBOL (native): Remote-SSH",
            "program": "<insert-program-name-here>",
            "env": {
                "TERM": "xterm",
                "DISPLAY": "<hostname-or-ip:D.S>"
            },
            "stopOnEntry": true,
            "console": "externalTerminal"
        },
        {
            "type": "cobol",
            "request": "launch",
            "name": "COBOL (native): remote",
            "program": "<insert-program-name-here>",
            "remoteDebug": {
                "machine": "Please enter the name or IP address of the machine runing cobdebugremote.",
                "port": 0
            },
            "stopOnEntry": true
        },
        {
            "type": "cobol",
            "request": "launch",
            "name": "COBOL (native)",
            "program": "${workspaceFolder}/<insert-program-name-here>",
            "cwd": "${workspaceFolder}",
            "stopOnEntry": true
        },
        {
            "request": "launch",
            "name": "Launch Program",
            "type": "node",
            "program": "${workspaceFolder}/main.ts",
            "cwd": "${workspaceFolder}",
            "env": {},
            "runtimeExecutable": "deno",
            "runtimeArgs": [
                "run",
                "--unstable",
                "--inspect-brk",
                "--allow-all"
            ],
            "attachSimplePort": 9229
        }
    ]
}