From e8d09767cf1530165811e793fd746ab6ce077d0e Mon Sep 17 00:00:00 2001 From: Malhar Vora Date: Fri, 2 Feb 2018 06:05:58 -0800 Subject: [PATCH] Fixes #27 This attribute indicates the severity level of logging. The intent of this attribute is to be considered as a mechanism to tell the receiving infrastructure what the logging level of the infrastructure should be. The log level can be one of debug, info, warning, error, fatal. The set of log level is taken from syslog protocol. Following is a description of each log level. fatal: system is unstable error: error conditions warning: warning conditions info : informational messages debug: debug-level messages Signed-off-by: Malhar Vora --- spec.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/spec.md b/spec.md index 2119770e2..df45664c4 100644 --- a/spec.md +++ b/spec.md @@ -231,6 +231,12 @@ that contains both context and data). * Constraints: * OPTIONAL +### log-level +* Type: String +* Description: The severity level of logging. The intent of this attribute is to be considered as a mechanism to tell the receiving infrastructure what the logging level of the infrastructure SHOULD be. +* Constraints: + * OPTIONAL + * If present, MUST be one of debug, info, warning, error, fatal ## Additional Topics & Questions