1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 02:35:23 +00:00
v2fly/app/log/config.proto

26 lines
538 B
Protocol Buffer
Raw Normal View History

2016-10-03 20:07:28 +00:00
syntax = "proto3";
2017-02-01 20:35:40 +00:00
package v2ray.core.app.log;
option csharp_namespace = "V2Ray.Core.App.Log";
2021-02-16 20:31:50 +00:00
option go_package = "github.com/v2fly/v2ray-core/v4/app/log";
2017-02-01 20:35:40 +00:00
option java_package = "com.v2ray.core.app.log";
2017-02-03 22:15:10 +00:00
option java_multiple_files = true;
2016-10-03 20:07:28 +00:00
import "common/log/log.proto";
2017-12-19 20:28:12 +00:00
2016-10-03 20:07:28 +00:00
enum LogType {
None = 0;
Console = 1;
File = 2;
Event = 3;
}
message Config {
LogType error_log_type = 1;
2017-12-19 20:28:12 +00:00
v2ray.core.common.log.Severity error_log_level = 2;
2016-10-03 20:07:28 +00:00
string error_log_path = 3;
LogType access_log_type = 4;
string access_log_path = 5;
}