1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-20 02:46:10 -04:00
v2fly/app/log/config.proto

34 lines
742 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";
option go_package = "github.com/v2fly/v2ray-core/v5/app/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
import "common/log/log.proto";
2021-09-06 11:54:01 -04:00
import "common/protoext/extensions.proto";
2017-12-19 15:28:12 -05:00
2016-10-03 16:07:28 -04:00
enum LogType {
None = 0;
Console = 1;
File = 2;
Event = 3;
}
2021-10-02 17:29:37 -04:00
message LogSpecification {
LogType type = 1;
v2ray.core.common.log.Severity level = 2;
string path = 3;
}
2016-10-03 16:07:28 -04:00
message Config {
2021-09-06 11:54:01 -04:00
option (v2ray.core.common.protoext.message_opt).type = "service";
option (v2ray.core.common.protoext.message_opt).short_name = "log";
2021-10-02 17:29:37 -04:00
reserved 1,2,3,4,5;
2016-10-03 16:07:28 -04:00
2021-10-02 17:29:37 -04:00
LogSpecification error = 6;
LogSpecification access = 7;
}