mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 17:51:28 +00:00
* Console logging improvements * stderr handling * Add origination information * Formatting * Update zoneserver.cpp * Update eqemu_logsys.cpp * Remove semicolon from MySQLQuery log output * Remove IsRfc5424LogCategory * Remove no longer used functions * Remove definition BUILD_LOGGING * Deprecate categories UCSServer & WorldServer * Deprecate UCS / World Server / Zone Server categories * Deprecate Status, QSServer, Normal * Update login_server.cpp * Deprecate Emergency, Alert, Critical, Notice * Deprecate Alert * Fix terminal color resetting * Deprecate headless client * Move LogAIModerate to Detail * Deprecate moderate logging level for detail * Update logs.cpp * Logs list simplify * Update logs.cpp * Add discord to log command * Remove unused headers * Windows fix * Error in world when zones fail to load * Show warning color properly * Keep loginserver thread log from colliding with other logs during startup * Deprecate Loginserver category
25 lines
1.3 KiB
C++
25 lines
1.3 KiB
C++
#include "iostream"
|
|
#include "../common/cli/eqemu_command_handler.h"
|
|
|
|
#ifndef EQEMU_WORLD_SERVER_COMMAND_HANDLER_H
|
|
#define EQEMU_WORLD_SERVER_COMMAND_HANDLER_H
|
|
|
|
class WorldserverCLI {
|
|
public:
|
|
static void CommandHandler(int argc, char **argv);
|
|
static void Version(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static void CopyCharacter(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static void DatabaseVersion(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static void DatabaseSetAccountStatus(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static void DatabaseGetSchema(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static void DatabaseDump(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static void TestCommand(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static void TestColors(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static void ExpansionTestCommand(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static void TestRepository(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static void TestRepository2(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
};
|
|
|
|
|
|
#endif //EQEMU_WORLD_SERVER_COMMAND_HANDLER_H
|