Skip to content

Commit 0c80d53

Browse files
author
Matthew Fisher
committed
fix(logger): import syslog package from github
Since syslog.go is located at github.com/opdemand/deis/logger/syslog, we should be imorting from there. Without this change, running syslogd.go will complain that the syslog package does not exist.
1 parent 1633cb8 commit 0c80d53

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

logger/syslogd/syslogd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"path"
1010
"regexp"
1111
"syscall"
12-
"syslog"
12+
"github.com/opdemand/deis/logger/syslog"
1313
)
1414

1515
const logRoot = "/var/log/deis"

0 commit comments

Comments
 (0)