v2fly/app/log/config.proto

34 lines
742 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";
option go_package = "github.com/v2fly/v2ray-core/v5/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";
2021-09-06 15:54:01 +00:00
import "common/protoext/extensions.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;
}
2021-10-02 21:29:37 +00:00
message LogSpecification {
LogType type = 1;
v2ray.core.common.log.Severity level = 2;
string path = 3;
}
2016-10-03 20:07:28 +00:00
message Config {
2021-09-06 15:54:01 +00:00
option (v2ray.core.common.protoext.message_opt).type = "service";
option (v2ray.core.common.protoext.message_opt).short_name = "log";
2021-10-02 21:29:37 +00:00
reserved 1,2,3,4,5;
2016-10-03 20:07:28 +00:00
2021-10-02 21:29:37 +00:00
LogSpecification error = 6;
LogSpecification access = 7;
}