From 0cf967c0239a8ab9c8b8831b700b72d9a08f7b03 Mon Sep 17 00:00:00 2001 From: liamfallon Date: Fri, 16 Oct 2020 13:09:11 +0100 Subject: Remove apex asciidoc documents Apex documentation has now all been ported to use the ONAP recommended rst format. This review removes the old asciidoc documents. Issue-ID: POLICY-2824 Change-Id: I562bd344cb7d6ff36e7d54bdb8f95e3b656468f8 Signed-off-by: liamfallon --- .../howto-logging/standard-configuration.adoc | 93 ---------------------- 1 file changed, 93 deletions(-) delete mode 100644 src/site-docs/adoc/fragments/howto-logging/standard-configuration.adoc (limited to 'src/site-docs/adoc/fragments/howto-logging/standard-configuration.adoc') diff --git a/src/site-docs/adoc/fragments/howto-logging/standard-configuration.adoc b/src/site-docs/adoc/fragments/howto-logging/standard-configuration.adoc deleted file mode 100644 index 4cd4b9b67..000000000 --- a/src/site-docs/adoc/fragments/howto-logging/standard-configuration.adoc +++ /dev/null @@ -1,93 +0,0 @@ -// -// ============LICENSE_START======================================================= -// Copyright (C) 2016-2018 Ericsson. All rights reserved. -// ================================================================================ -// This file is licensed under the CREATIVE COMMONS ATTRIBUTION 4.0 INTERNATIONAL LICENSE -// Full license text at https://creativecommons.org/licenses/by/4.0/legalcode -// -// SPDX-License-Identifier: CC-BY-4.0 -// ============LICENSE_END========================================================= -// -// @author Sven van der Meer (sven.van.der.meer@ericsson.com) -// - -== Standard Logging Configuration - -The standard logging configuration defines a context __APEX__, which is used in the standard output pattern. -The location for log files is defined in the property `VAR_LOG` and set to `/var/log/onap/policy/apex-pdp`. -The standard status listener is set to __NOP__ and the overall logback configuration is set to no debug. - -[source%nowrap,xml,numbered] ----- - - - - Apex - - - ...appenders - ...loggers - ----- - -The first appender defined is called `STDOUT` for logs to standard out. - -[source%nowrap,xml,numbered] ----- - - - %d %contextName [%t] %level %logger{36} - %msg%n - - ----- - -The root level logger then is set to the level __info__ using the standard out appender. -[source%nowrap,xml,numbered] ----- - - - ----- - -The second appender is called `FILE`. -It writes logs to a file `apex.log`. -[source%nowrap,xml,numbered] ----- - - ${VAR_LOG}/apex.log - - %d %-5relative [procId=${processId}] [%thread] %-5level %logger{26} - %msg %n %ex{full} - - ----- - -The third appender is called `CTXT_FILE`. -It writes logs to a file `apex_ctxt.log`. -[source%nowrap,xml,numbered] ----- - - ${VAR_LOG}/apex_ctxt.log - - %d %-5relative [procId=${processId}] [%thread] %-5level %logger{26} - %msg %n %ex{full} - - ----- - -The last definitions are for specific loggers. -The first logger captures all standard APEX classes. -It is configured for log level __info__ and uses the standard output and file appenders. -The second logger captures APEX context classes responsible for context monitoring. -It is configured for log level __trace__ and uses the context file appender. - -[source%nowrap,xml,numbered] ----- - - - - - - - - ----- - -- cgit 1.2.3-korg