Goby3 3.3.0
2025.07.10
Loading...
Searching...
No Matches
logger.proto
Go to the documentation of this file.
1syntax = "proto2";
2
3package goby.middleware.protobuf;
4
5message LoggerRequest
6{
7 enum State
8 {
9 START_LOGGING = 1;
10 STOP_LOGGING = 2;
11 ROTATE_LOG = 3;
12 }
13 required State requested_state = 1;
14 optional bool close_log = 2
15 [default = false]; // if true, close log when using STOP_LOGGING
16}