mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 08:49:26 +03:00
14 lines
243 B
Protocol Buffer
14 lines
243 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
enum ServerLogLevel {
|
|
SERVER_LOG_LEVEL_NONE = 0;
|
|
SERVER_LOG_LEVEL_DEBUG = 1;
|
|
SERVER_LOG_LEVEL_INFO = 2;
|
|
SERVER_LOG_LEVEL_WARNING = 3;
|
|
SERVER_LOG_LEVEL_ERROR = 4;
|
|
}
|