2021-12-28 21:54:12 +01:00
|
|
|
{% extends "base.html" %}
|
2021-12-29 02:41:21 +01:00
|
|
|
{% block title %}eventlog{% endblock %}
|
2021-12-28 21:54:12 +01:00
|
|
|
{% block body %}
|
|
|
|
<h1><code>eventlog</code></h1>
|
|
|
|
<h2 id="write"><code>eventlog.write</code></h2>
|
|
|
|
<h3>Request:</h3>
|
2021-12-28 23:29:33 +01:00
|
|
|
<pre>{% highlight "cxml" %}<call ...>
|
|
|
|
<eventlog method="write">
|
|
|
|
<retrycnt __type="u32" />
|
|
|
|
<data>
|
|
|
|
<eventid __type="str" />
|
|
|
|
<eventorder __type="s32" />
|
|
|
|
<pcbtime __type="u64" />
|
|
|
|
<gamesession __type="s64" />
|
|
|
|
<strdata1 __type="str" />
|
|
|
|
<strdata2 __type="str" />
|
|
|
|
<numdata1 __type="s64" />
|
|
|
|
<numdata2 __type="s64" />
|
|
|
|
<locationid __type="str" />
|
|
|
|
</data>
|
|
|
|
</eventlog>
|
|
|
|
</call>{% endhighlight %}</pre>
|
2021-12-28 21:54:12 +01:00
|
|
|
<p>Event ID list:</p>
|
|
|
|
<ul>
|
|
|
|
<li><code>G_GAMED</code></li>
|
|
|
|
<li><code>S_ERROR</code></li>
|
|
|
|
<li><code>S_PWRON</code> <b>TODO: find more!</b></li>
|
|
|
|
<li><code>T_OTDEMO</code></li>
|
|
|
|
</ul>
|
|
|
|
<h3>Response:</h3>
|
2021-12-28 23:29:33 +01:00
|
|
|
<pre>{% highlight "cxml" %}<response>
|
|
|
|
<eventlog status="??status">
|
|
|
|
<gamesession __type="s64" />
|
|
|
|
<logsendflg __type="s32" />
|
|
|
|
<logerrlevel __type="s32" />
|
|
|
|
<evtidnosendflg __type="s32" />
|
|
|
|
</eventlog>
|
|
|
|
</response>{% endhighlight %}</pre>
|
2021-12-28 21:54:12 +01:00
|
|
|
{% endblock %}
|