mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-02 19:19:20 +02:00
16 lines
317 B
Protocol Buffer
16 lines
317 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.common.log;
|
|
option csharp_namespace = "Xray.Common.Log";
|
|
option go_package = "github.com/xtls/xray-core/common/log";
|
|
option java_package = "com.xray.common.log";
|
|
option java_multiple_files = true;
|
|
|
|
enum Severity {
|
|
Unknown = 0;
|
|
Error = 1;
|
|
Warning = 2;
|
|
Info = 3;
|
|
Debug = 4;
|
|
}
|