diff options
Diffstat (limited to 'src/state.go')
| -rw-r--r-- | src/state.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/state.go b/src/state.go index 521390e..c146e61 100644 --- a/src/state.go +++ b/src/state.go @@ -24,14 +24,14 @@ func (state *VPNState) Register(name string, directory string, stateCallback fun // Initialize the logger state.InitLog(LOG_WARNING) - state.Log(LOG_INFO, "App Registered") + state.Log(LOG_INFO, "App registered") state.StateCallback("Start", "Registered", "app registered") // Try to load the previous configuration if state.LoadConfig() != nil { // This error can be safely ignored, as when the config does not load, the struct will not be filled - // Make sure to log this when we have implemented a good logging system + state.Log(LOG_INFO, "Previous configuration not found") } return nil } |
