Bug 2187515

Summary: tlog-rec-session.conf(5) example misses a comma
Product: Red Hat Enterprise Linux 8 Reporter: jstephen
Component: tlogAssignee: jstephen
Status: VERIFIED --- QA Contact: Anuj Borah <aborah>
Severity: low Docs Contact:
Priority: unspecified    
Version: 8.9CC: aborah, jstephen, kmoriwak, 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: 2173795 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: v13
Embargoed:
Bug Depends On: 2173795    
Bug Blocks:    

Description jstephen 2023-04-17 19:26:19 UTC
+++ This bug was initially created as a clone of Bug #2173795 +++

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

--- Additional comment from  on 2023-03-02 17:17:03 UTC ---

https://github.com/Scribery/tlog/pull/355