CFLogger
/**
* @file cflogger.c
* This plugin will log events to an sqlite3 database named cflogger.db in the
* var directory.
*
* Log includes:
* @li players join/leave/creation/quit
* @li map load/unload/reset/enter/leave
* @li kills, whenever a player is concerned
* @li ingame/real time links
*
* @warning
* The plugin will not check the database size, which can grow a lot.
*
* @note
* Thanks to sqlite's locking, it's possible to access the database through the command
* line even while the server is running.
*/