<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://wiki.anope.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.anope.org/index.php?action=history&amp;feed=atom&amp;title=2.0%2FModules%2Fcs_log</id>
		<title>2.0/Modules/cs log - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.anope.org/index.php?action=history&amp;feed=atom&amp;title=2.0%2FModules%2Fcs_log"/>
		<link rel="alternate" type="text/html" href="https://wiki.anope.org/index.php?title=2.0/Modules/cs_log&amp;action=history"/>
		<updated>2026-05-09T17:36:31Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.23.4</generator>

	<entry>
		<id>//wiki.anope.org/index.php?title=2.0/Modules/cs_log&amp;diff=638&amp;oldid=prev</id>
		<title>Azander: Created page with &quot;{{Language|2.0/Modules/cs_log}} {{Syntax|cs_log|ChanServ|Anope}}  == &lt;div class=&quot;moduleheader&quot;&gt;Description&lt;/div&gt; == The LOG command allows users to configure logging settings ...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.anope.org/index.php?title=2.0/Modules/cs_log&amp;diff=638&amp;oldid=prev"/>
				<updated>2014-05-06T16:23:21Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;{{Language|2.0/Modules/cs_log}} {{Syntax|cs_log|ChanServ|Anope}}  == &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Description&amp;lt;/div&amp;gt; == The LOG command allows users to configure logging settings ...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Language|2.0/Modules/cs_log}}&lt;br /&gt;
{{Syntax|cs_log|ChanServ|Anope}}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Description&amp;lt;/div&amp;gt; ==&lt;br /&gt;
The LOG command allows users to configure logging settings for their channel. If no parameters are given this command lists the current logging methods in place for this channel.&lt;br /&gt;
&lt;br /&gt;
Otherwise, command must be a command name, and method is one of the following logging methods:&lt;br /&gt;
&lt;br /&gt;
MESSAGE [status], NOTICE [status], MEMO&lt;br /&gt;
&lt;br /&gt;
Which are used to message, notice, and memo the channel respectively. With MESSAGE or NOTICE you must have a service bot assigned to and joined&lt;br /&gt;
to your channel. Status may be a channel status such as @ or +.&lt;br /&gt;
&lt;br /&gt;
To remove a logging method use the same syntax as you would to add it.&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Commands&amp;lt;/div&amp;gt; == &lt;br /&gt;
;log channel&lt;br /&gt;
:&lt;br /&gt;
;log channel command method [status]&lt;br /&gt;
:&lt;br /&gt;
== &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Examples&amp;lt;/div&amp;gt; ==&lt;br /&gt;
/msg ChanServ LOG &lt;br /&gt;
&lt;br /&gt;
/msg ChanServ LOG #myChannel chanserv/access NOTICE @%~+&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Default Configuration&amp;lt;/div&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;code&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
/*&lt;br /&gt;
 * cs_log&lt;br /&gt;
 *&lt;br /&gt;
 * Provides the command chanserv/log.&lt;br /&gt;
 *&lt;br /&gt;
 * Use for configuring what actions on channels are logged and where.&lt;br /&gt;
 */&lt;br /&gt;
module&lt;br /&gt;
{&lt;br /&gt;
        name = &amp;quot;cs_log&amp;quot;&lt;br /&gt;
&lt;br /&gt;
        /* Default log settings for newly registered channels */&lt;br /&gt;
&lt;br /&gt;
        #default&lt;br /&gt;
        {&lt;br /&gt;
                command = &amp;quot;chanserv/modes&amp;quot;&lt;br /&gt;
                method = &amp;quot;MESSAGE @&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        #default&lt;br /&gt;
        {&lt;br /&gt;
                service = &amp;quot;ChanServ&amp;quot;&lt;br /&gt;
                command = &amp;quot;ACCESS&amp;quot;&lt;br /&gt;
                method = &amp;quot;MESSAGE @&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        #default&lt;br /&gt;
        {&lt;br /&gt;
                command = &amp;quot;chanserv/xop&amp;quot;&lt;br /&gt;
                method = &amp;quot;MESSAGE @&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        #default&lt;br /&gt;
        {&lt;br /&gt;
                service = &amp;quot;ChanServ&amp;quot;&lt;br /&gt;
                command = &amp;quot;FLAGS&amp;quot;&lt;br /&gt;
                method = &amp;quot;MESSAGE @&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
}&lt;br /&gt;
command { service = &amp;quot;ChanServ&amp;quot;; name = &amp;quot;LOG&amp;quot;; command = &amp;quot;chanserv/log&amp;quot;; group = &amp;quot;chanserv/management&amp;quot;; }&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Azander</name></author>	</entry>

	</feed>