aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/service/errors.go
diff options
context:
space:
mode:
Diffstat (limited to 'service/errors.go')
-rw-r--r--service/errors.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/service/errors.go b/service/errors.go
index fd6bc6ab..02ca33dc 100644
--- a/service/errors.go
+++ b/service/errors.go
@@ -15,7 +15,7 @@ type Error uint32
const (
ErrorSuccess Error = iota
- ErrorEventlogOpen
+ ErrorRingloggerOpen
ErrorLoadConfiguration
ErrorCreateWintun
ErrorDetermineWintunName
@@ -36,8 +36,8 @@ func (e Error) Error() string {
switch e {
case ErrorSuccess:
return "No error."
- case ErrorEventlogOpen:
- return "Unable to open Windows event log."
+ case ErrorRingloggerOpen:
+ return "Unable to open log file."
case ErrorDetermineExecutablePath:
return "Unable to determine path of running executable."
case ErrorLoadConfiguration: