1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 15:26:29 -04:00
v2fly/app/log/config.proto

25 lines
517 B
Protocol Buffer
Raw Normal View History

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