gazetk / Protocol / specification / logging.proto @ cf5923cc
History | View | Annotate | Download (368 Bytes)
1 |
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 |
} |
15 |
|