Type tf.logging
Namespace tensorflow
Methods
- debug
- debug_dyn
- error
- error
- error
- error
- error_dyn
- fatal
- fatal
- fatal
- fatal
- fatal_dyn
- info
- info
- info
- info
- info
- info
- info
- info
- info
- info
- info
- info_dyn
- log
- log
- log_every_n
- log_every_n_dyn
- log_first_n
- log_first_n_dyn
- log_if
- log_if_dyn
- set_verbosity
- TaskLevelStatusMessage
- TaskLevelStatusMessage_dyn
- vlog
- vlog
- vlog
- vlog
- vlog
- vlog
- vlog
- vlog
- vlog
- vlog
- vlog
- vlog
- vlog_dyn
- vlog_dyn
- warning
- warning
- warning
- warning
- warning_dyn
- warning_dyn
Properties
Public static methods
void debug(string msg, IDictionary<string, object> kwargs, Object[] args)
object debug_dyn(object msg, IDictionary<string, object> kwargs, Object[] args)
void error(PythonClassContainer msg, IDictionary<string, object> kwargs, Object[] args)
void error(PythonClassContainer msg, Object[] args)
void error(object msg, IDictionary<string, object> kwargs, Object[] args)
void error(object msg, Object[] args)
object error_dyn(object msg, IDictionary<string, object> kwargs, Object[] args)
void fatal(string msg, Object[] args)
void fatal(int msg, Object[] args)
void fatal(string msg, IDictionary<string, object> kwargs, Object[] args)
void fatal(int msg, IDictionary<string, object> kwargs, Object[] args)
object fatal_dyn(object msg, IDictionary<string, object> kwargs, Object[] args)
void info(IEnumerable<object> msg, IDictionary<string, object> kwargs, Object[] args)
void info(int msg, IDictionary<string, object> kwargs, Object[] args)
void info(int msg, Object[] args)
void info(IEnumerable<object> msg, Object[] args)
void info(double msg, Object[] args)
void info(bool msg, Object[] args)
void info(string msg, Object[] args)
void info(bool msg, IDictionary<string, object> kwargs, Object[] args)
void info(object msg, IDictionary<string, object> kwargs, Object[] args)
void info(double msg, IDictionary<string, object> kwargs, Object[] args)
void info(string msg, IDictionary<string, object> kwargs, Object[] args)
object info_dyn(object msg, IDictionary<string, object> kwargs, Object[] args)
void log(object level, string msg, IDictionary<string, object> kwargs, Object[] args)
void log(object level, string msg, Object[] args)
void log_every_n(object level, object msg, object n, Object[] args)
Log 'msg % args' at level 'level' once per 'n' times. Logs the 1st call, (N+1)st call, (2N+1)st call, etc.
Not threadsafe.
Parameters
-
object
level - The level at which to log.
-
object
msg - The message to be logged.
-
object
n - The number of times this should be called before it is logged.
-
Object[]
args - The args to be substituted into the msg.
object log_every_n_dyn(object level, object msg, object n, Object[] args)
Log 'msg % args' at level 'level' once per 'n' times. Logs the 1st call, (N+1)st call, (2N+1)st call, etc.
Not threadsafe.
Parameters
-
object
level - The level at which to log.
-
object
msg - The message to be logged.
-
object
n - The number of times this should be called before it is logged.
-
Object[]
args - The args to be substituted into the msg.
void log_first_n(object level, string msg, int n, Object[] args)
Log 'msg % args' at level 'level' only first 'n' times. Not threadsafe.
Parameters
-
object
level - The level at which to log.
-
string
msg - The message to be logged.
-
int
n - The number of times this should be called before it is logged.
-
Object[]
args - The args to be substituted into the msg.
object log_first_n_dyn(object level, object msg, object n, Object[] args)
Log 'msg % args' at level 'level' only first 'n' times. Not threadsafe.
Parameters
-
object
level - The level at which to log.
-
object
msg - The message to be logged.
-
object
n - The number of times this should be called before it is logged.
-
Object[]
args - The args to be substituted into the msg.
void log_if(object level, string msg, bool condition, Object[] args)
Log 'msg % args' at level 'level' only if condition is fulfilled.
object log_if_dyn(object level, object msg, object condition, Object[] args)
Log 'msg % args' at level 'level' only if condition is fulfilled.
void set_verbosity(object v)
Sets the threshold for what messages will be logged.