blob: c78d85a6e0f903e569a9d41003bcdae8c880e860 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
---
layout: page
title: "Help: rawlog"
---
{% comment %}
Please submit changes to
- https://github.com/irssi/irssi/blob/master/docs/help/in/rawlog.in
- https://github.com/irssi/irssi/blob/master/src/core/rawlog.c
{% endcomment %}
[Help index](/documentation/help)
### Syntax ###
<div class="highlight irssisyntax"><pre style="\-\-cmdlen:11ch"><code><span class="synB">RAWLOG</span> <span class="synB">SAVE</span> <span class="synB05"><file></span></code></pre></div>
<div class="highlight irssisyntax"><pre style="\-\-cmdlen:11ch"><code><span class="synB">RAWLOG</span> <span class="synB">OPEN</span> <span class="synB05"><file></span></code></pre></div>
RAWLOG CLOSE
### Parameters ###
| `SAVE`: | Saves the raw server buffer into a file. |
| `OPEN`: | Opens a log file and start logging all raw data. |
| `CLOSE`: | Closes the log file |
{:.table.kv}
The filename to store the raw data into.
### Description ###
Saves all the raw data that is received from and transmitted to the active
server into a log file.
### Examples ###
/RAWLOG SAVE ~/server.log
/RAWLOG OPEN ~/debug.log
/RAWLOG CLOSE
### See also ###
[LOG](/documentation/help/log)
|