mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
- Much cleaner API for writing to the log. - Adds support for stderr and stdout logging to the core. - Adds support for sql and syslog logging in modules.
7 lines
102 B
SQL
7 lines
102 B
SQL
CREATE TABLE IF NOT EXISTS "ircd_log" (
|
|
"time" datetime,
|
|
"type" varchar(50),
|
|
"message" text
|
|
);
|
|
|