summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/logs/Logs.cmd
blob: c64c1a2c81b0e62679fe09f1875c1c623a70be8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
command log {
    perm utils.logs;
    alias logs;
    type player;
    
    search [string:file(s)] [string:search...] {
        run search_logs file(s) search;
        help Performs the specified search operation on the logs. Wildcards are supported in filenames. Search string is a regex.;
    }
    terminate {
    	run terminate_search;
    	help Stops the search.;
    }
    format {
        run show_format;
        help Displays your current log output format with an example result.;
    }
    format_help {
        run show_format_help;
        help Displays all available placeholders for the formatting;
    }
    option_help {
        run show_option_help;
        help Displays all available options.;
    }
    set format [string:format] {
        run set_format format;
        help Sets a new log output format;
    }
    set [string:option] [boolean:state] {
        run set_option option state;
        help Allows you to enable or disable various features such as sumamries, live progress updates, etc...;
    }
}