You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by rr...@apache.org on 2019/06/17 23:26:03 UTC

[trafficserver] branch master updated: Fix default logging.yaml with new format.

This is an automated email from the ASF dual-hosted git repository.

rrm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 397bfb9  Fix default logging.yaml with new format.
397bfb9 is described below

commit 397bfb92095b9273def0866154ce771bbd2d7e78
Author: Randall Meyer <rr...@apache.org>
AuthorDate: Mon Jun 17 15:12:36 2019 -0700

    Fix default logging.yaml with new format.
    
    'logging' is the toplevel key
---
 configs/logging.yaml.default | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/configs/logging.yaml.default b/configs/logging.yaml.default
index 2d6da55..a5d9980 100644
--- a/configs/logging.yaml.default
+++ b/configs/logging.yaml.default
@@ -10,8 +10,8 @@
 #    https://docs.trafficserver.apache.org/en/8.0.x/admin-guide/logging/examples.en.html
 
 
-formats:
-  logging:
+logging:
+  formats:
     # WebTrends Enhanced Log Format.
     #
     # The following is compatible with the WebTrends Enhanced Log Format.
@@ -42,10 +42,9 @@ formats:
     - name: "extended2"
       format: '%<chi> - %<caun> [%<cqtn>] "%<cqtx>" %<pssc> %<pscl> %<sssc> %<sscl> %<cqcl> %<pqcl> %<cqhl> %<pshl> %<pqhl> %<sshl> %<tts> %<phr> %<cfsc> %<pfsc> %<crc>'
 
-logs:
+  logs:
     - filename: squid
       format: squid
       mode: binary
 
-
 # vim: set ft=yaml :