From b72cce8f0065d8b1f29129e8d46cd4154365736e Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Sat, 18 Jan 2020 10:34:28 -0500 Subject: [PATCH] Make a comment a little clearer --- tea.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tea.go b/tea.go index 4df9ad7..4fdcf52 100644 --- a/tea.go +++ b/tea.go @@ -172,8 +172,9 @@ func (p *Program) render(model Model) { linesRendered = strings.Count(view, "\r\n") } -// UseSysLog logs to the system log. This becomes helpful when debugging since -// we can't easily print to the terminal since our TUI is occupying it! +// UseSysLog sets up logging to log the system log. This becomes helpful when +// debugging since we can't easily print to the terminal since our TUI is +// occupying it! // // On macOS this is a just a matter of: tail -f /var/log/system.log func UseSysLog(programName string) error {