Add a new 'log message' event type.

This will be used in a subsequent change to allow Python code to log to the
events file so that it can be viewed in TensorBoard and so logging events can be
associated with models more easily.
Change: 113194631
This commit is contained in:
A. Unique TensorFlower 2016-01-27 13:29:25 -08:00 committed by Vijay Vasudevan
parent c2722a1fc6
commit 0cee1d3dac

View File

@ -25,5 +25,22 @@ message Event {
GraphDef graph_def = 4;
// A summary was generated.
Summary summary = 5;
// The user output a log message. Not all messages are logged, only ones
// generated via the Python tensorboard_logging module.
LogMessage log_message = 6;
}
}
// Protocol buffer used for logging messages to the events file.
message LogMessage {
enum Level {
UNKNOWN = 0;
DEBUG = 10;
INFO = 20;
WARN = 30;
ERROR = 40;
FATAL = 50;
}
Level level = 1;
string message = 2;
}