summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-10-26 15:30:42 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-10-26 15:30:42 -0400
commite04cc063d12dafe19317a8a22e94e0a52989e9e9 (patch)
tree17842f9556ce7eb071c2b44223fe060443ef24b2 /src
parentb22ddee242613929fa5ca40a6b759e175a889ed7 (diff)
make gofmt complain slightly less
Diffstat (limited to 'src')
-rw-r--r--src/dl/dl_gnu.go1
-rw-r--r--src/sd_daemon/logger/logger.go23
2 files changed, 15 insertions, 9 deletions
diff --git a/src/dl/dl_gnu.go b/src/dl/dl_gnu.go
index 99ec32c..771e9c4 100644
--- a/src/dl/dl_gnu.go
+++ b/src/dl/dl_gnu.go
@@ -80,4 +80,3 @@ const (
// - RTLD_DI_DATA
// TODO: dl_iterate_phdr
// TODO: rtld-audit(7)
-
diff --git a/src/sd_daemon/logger/logger.go b/src/sd_daemon/logger/logger.go
index 850df1c..c15475a 100644
--- a/src/sd_daemon/logger/logger.go
+++ b/src/sd_daemon/logger/logger.go
@@ -30,18 +30,25 @@ func log(level string, format string, a ...interface{}) {
}
// system is unusable
-func Emerg( format string, a ...interface{}) { log(C.SD_EMERG , format, a...); }
+func Emerg( /* */ format string, a ...interface{}) { log(C.SD_EMERG /* */, format, a...) }
+
// action must be taken immediately
-func Alert( format string, a ...interface{}) { log(C.SD_ALERT , format, a...); }
+func Alert( /* */ format string, a ...interface{}) { log(C.SD_ALERT /* */, format, a...) }
+
// critical conditions
-func Crit( format string, a ...interface{}) { log(C.SD_CRIT , format, a...); }
+func Crit( /* */ format string, a ...interface{}) { log(C.SD_CRIT /* */, format, a...) }
+
// error conditions
-func Err( format string, a ...interface{}) { log(C.SD_ERR , format, a...); }
+func Err( /* */ format string, a ...interface{}) { log(C.SD_ERR /* */, format, a...) }
+
// warning conditions
-func Warning(format string, a ...interface{}) { log(C.SD_WARNING, format, a...); }
+func Warning( /**/ format string, a ...interface{}) { log(C.SD_WARNING /**/, format, a...) }
+
// normal but significant condition
-func Notice( format string, a ...interface{}) { log(C.SD_NOTICE , format, a...); }
+func Notice( /* */ format string, a ...interface{}) { log(C.SD_NOTICE /* */, format, a...) }
+
// informational
-func Info( format string, a ...interface{}) { log(C.SD_INFO , format, a...); }
+func Info( /* */ format string, a ...interface{}) { log(C.SD_INFO /* */, format, a...) }
+
// debug-level messages
-func Debug( format string, a ...interface{}) { log(C.SD_DEBUG , format, a...); }
+func Debug( /* */ format string, a ...interface{}) { log(C.SD_DEBUG /* */, format, a...) }