From 6e6f309f577d27c4c11c7bb20bfcdc33d14e3367 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Sun, 8 Dec 2013 19:41:22 +0100 Subject: [PATCH] Fix errors reported by pyang Change-Id: Ia94339d7e9e759d02070a94507a340c80bc46100 Signed-off-by: Robert Varga --- .../logback-config/src/main/yang/config-logging.yang | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/opendaylight/config/logback-config/src/main/yang/config-logging.yang b/opendaylight/config/logback-config/src/main/yang/config-logging.yang index 7f4ea39dd4..3b28b57469 100644 --- a/opendaylight/config/logback-config/src/main/yang/config-logging.yang +++ b/opendaylight/config/logback-config/src/main/yang/config-logging.yang @@ -51,6 +51,7 @@ module config-logging { type string; mandatory true; } + key name; config:java-name-prefix FileAppenderTO; } @@ -89,6 +90,7 @@ module config-logging { type string; mandatory true; } + key name; leaf file-name-pattern { type string; @@ -107,7 +109,7 @@ module config-logging { leaf clean-history-on-start { type boolean; - default 0; + default false; } config:java-name-prefix RollingFileAppenderTO; } @@ -128,6 +130,8 @@ module config-logging { type string; mandatory true; } + key name; + config:java-name-prefix ConsoleAppenderTO; } @@ -136,6 +140,7 @@ module config-logging { type string; mandatory true; } + key logger-name; leaf level { type string; -- 2.36.6