<article class="uk-article">
<h1 class="uk-article-title">ESM_fnc_log</h1>
<p class="uk-article-meta">Logs a message to the server RPT</p>
<h4 class="uk-margin-remove">Input: <code><span class="esm-text-color-toast-yellow"><ARRAY></span></code></h4>
<dl class="uk-description-list">
<dd><code>_this select 0: <span class="esm-text-color-toast-blue">_functionName</span> <span class="esm-text-color-toast-yellow"><STRING></span></code></dd>
<dd>The name of the function that contains this log. Useful for debugging</dd>
<dd><code>_this select 1: <span class="esm-text-color-toast-blue">_message</span> <span class="esm-text-color-toast-yellow"><ANY></span></code></dd>
<dd>The thing to log to the RPT. This can be anything as it's logged as a string</dd>
</dl>
<h4 class="uk-margin-remove">Examples</h4>
<pre>["ESM_fnc_myFunction", "I'm logging from my function!"] call ESM_fnc_log;</pre>
<pre>["DEBUG", "This is a debug message!"] call ESM_fnc_log;</pre>
</article>