Bug 2173795

Summary: tlog-rec-session.conf(5) example misses a comma
Product: Red Hat Enterprise Linux 9 Reporter: Kazuo Moriwaka <kmoriwak>
Component: tlogAssignee: jstephen
Status: VERIFIED --- QA Contact: Anuj Borah <aborah>
Severity: low Docs Contact:
Priority: unspecified    
Version: 9.1CC: aborah, jstephen, nikolai.kondrashov, spoore
Target Milestone: rcKeywords: Triaged
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of:
: 2187515 (view as bug list) Environment:
Last Closed: Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 2187515    

Description Kazuo Moriwaka 2023-02-28 01:20:48 UTC
Description of problem:

An example in tlog-rec-session.conf(5) needs a comma at the end of "writer" line.
--------------------------------------------
       A configuration specifying logging to a file:

              {
                  "writer": "file"
                  "file" : {
                      "path": "/var/log/tlog-rec-session.log"
                  }
              }
--------------------------------------------

It should be:
--------------------------------------------
       A configuration specifying logging to a file:

              {
                  "writer": "file",
                  "file" : {
                      "path": "/var/log/tlog-rec-session.log"
                  }
              }
--------------------------------------------

Version-Release number of selected component (if applicable):
tlog-12.1-2.el9.x86_64

Comment 1 jstephen 2023-03-02 17:17:03 UTC
https://github.com/Scribery/tlog/pull/355