diff --git a/logger/logger_bsd.go b/logger/logger_bsd.go index 3994e53..640a6a3 100644 --- a/logger/logger_bsd.go +++ b/logger/logger_bsd.go @@ -1,5 +1,5 @@ // +build freebsd -// + // Package logger is a wrapper around UNIX syslog, so that it also may // be wrapped with something else for Windows (Sadly, the stdlib log/syslog // is frozen, and there is no Windows implementation.) diff --git a/logger/logger_linux.go b/logger/logger_linux.go index 349a8a6..5e6f304 100644 --- a/logger/logger_linux.go +++ b/logger/logger_linux.go @@ -1,5 +1,5 @@ // +build linux -// + // Package logger is a wrapper around UNIX syslog, so that it also may // be wrapped with something else for Windows (Sadly, the stdlib log/syslog // is frozen, and there is no Windows implementation.) diff --git a/logger/logger_windows.go b/logger/logger_windows.go index 793e982..24dd40d 100644 --- a/logger/logger_windows.go +++ b/logger/logger_windows.go @@ -1,5 +1,5 @@ // +build windows -// + // Wrapper around UNIX syslog, so that it also may be wrapped // with something else for Windows. package logger