Make logger and timesamp_logger config lists
We want to log messages on both the roboRIO, and on the laptop/logger
pi. This means that we want lists of loggers instead of a single
logger.
We are lucky and there are no known log files with loggers in them which
we care to preserve. This lets us reuse the field without worying about
compatability.
Change-Id: I452994fbca78909d6320da3d02ad51fe45a0354b
diff --git a/aos/configuration.fbs b/aos/configuration.fbs
index 576616e..c66da06 100644
--- a/aos/configuration.fbs
+++ b/aos/configuration.fbs
@@ -29,7 +29,7 @@
// remotely, which node should be responsible for logging the data. Note:
// for now, this can only be the source node. Empty implies the node this
// connection is connecting to (i.e. name).
- timestamp_logger_node:string;
+ timestamp_logger_nodes:[string];
// Priority to forward data with.
priority:ushort = 100;
@@ -77,7 +77,7 @@
// logging the data. Note: this requires that the data is forwarded to the
// node responsible for logging it. Empty implies the node this connection
// is connecting to (i.e. name).
- logger_node:string;
+ logger_nodes:[string];
}
// Table to support renaming channel names.