gazetk / Protocol / specification / logging.proto @ fba08427
History | View | Annotate | Download (368 Bytes)
1 | cf5923cc | Thies Pfeiffer | syntax = "proto2"; |
---|---|---|---|
2 | // |
||
3 | // Logging |
||
4 | // |
||
5 | // Defines some logging messages |
||
6 | // |
||
7 | |||
8 | import "basic_types.proto"; |
||
9 | |||
10 | message Log { |
||
11 | required gazetk.protocol.types.Timestamp timestamp = 1; // Time of the creation of the log message |
||
12 | required string source = 2; // Source of the log message |
||
13 | required string content = 3; // The content of the message |
||
14 | } |