Debug » History » Version 12
Per Amundsen, 06/26/2016 09:44 AM
1 | 1 | Per Amundsen | _Added in 1.5_ |
---|---|---|---|
2 | |||
3 | 12 | Per Amundsen | */debug [-cdNeinpst] [N] [on | off | @window | filename] [identifier]* |
4 | 1 | Per Amundsen | |
5 | 8 | Per Amundsen | Outputs raw server messages, both incoming and outgoing to a file or a custom window. |
6 | 1 | Per Amundsen | |
7 | 2 | Per Amundsen | If a custom window is defined, and it doesn't exist, a window will be created. |
8 | |||
9 | 4 | Per Amundsen | If no filename or custom window is defined, default filename of "debug.log" will be used. |
10 | |||
11 | 10 | Per Amundsen | /debug works per server. |
12 | |||
13 | 2 | Per Amundsen | *Switches* |
14 | |||
15 | 1 | Per Amundsen | -c - Closes the associated custom window. (used with off) |
16 | 12 | Per Amundsen | -dN - Enable editbox; 0 = single, 1 = multi, 2 = auto, 3 = default. (AdiIRC only) |
17 | 6 | Per Amundsen | -e - Adds extended debug information. _AdiIRC only_ |
18 | 2 | Per Amundsen | -i - Calls the specified identifier before a debug line is logged. The return value of the identifier is used as the debug line. |
19 | -n - Minimizes the custom window, if a new one is created. |
||
20 | 1 | Per Amundsen | -p - TODO |
21 | 11 | Per Amundsen | -s - Open a window for debugging scripts. |
22 | 2 | Per Amundsen | -t - Adds timestamp to the debug line. |
23 | 3 | Per Amundsen | |
24 | *Parameters* |
||
25 | |||
26 | 9 | Per Amundsen | [N] - Line color to use in the custom window. |
27 | [on | off] - Turns debugging on or off. |
||
28 | [@window | filename] - Custom window or filename to log to. |
||
29 | [identifier] - Identifier to parse a line, used with -i. |
||
30 | 5 | Per Amundsen | |
31 | *Example* |
||
32 | |||
33 | <pre> |
||
34 | ; Turns on debug to custom window named '@debug' and minimizes it. |
||
35 | /debug -n @debug |
||
36 | |||
37 | ; Turns off debug and closes the custom window |
||
38 | /debug -c off |
||
39 | |||
40 | ; Turns on debug to file named 'debug.log' and enables timestamp. |
||
41 | /debug -t debug.log |
||
42 | </pre> |