diff --git a/RevidCLI.go b/RevidCLI.go index 07327255..fdb7dd9b 100644 --- a/RevidCLI.go +++ b/RevidCLI.go @@ -37,7 +37,7 @@ import ( "bitbucket.org/ausocean/av/revid" "bitbucket.org/ausocean/iot/pi/netsender" - "bitbucket.org/ausocean/utils/smartLogger" + "bitbucket.org/ausocean/utils/smartlogger" linuxproc "github.com/c9s/goprocinfo/linux" ) @@ -242,7 +242,7 @@ func main() { config.IntraRefreshPeriod = *configFlags[intraRefreshPeriodPtr] // Also give the config a logger object - config.Logger = smartLogger.New(loggerVerbosity, smartLogger.File, "/var/log/netsender/") + config.Logger = smartlogger.New(loggerVerbosity, smartlogger.File, "/var/log/netsender/") //init netsender if *netSenderFlagPtr { diff --git a/revid/Config.go b/revid/Config.go index f9945ff4..d2047822 100644 --- a/revid/Config.go +++ b/revid/Config.go @@ -32,8 +32,8 @@ import ( _ "fmt" "strconv" - "bitbucket.org/ausocean/utils/smartLogger" - //"../../utils/smartLogger" + "bitbucket.org/ausocean/utils/smartlogger" + //"../../utils/smartlogger" ) // Config provides parameters relevant to a revid instance. A new config must @@ -60,7 +60,7 @@ type Config struct { Quantization string Timeout string IntraRefreshPeriod string - Logger smartLogger.LogInstance + Logger smartlogger.LogInstance } // Enums for config struct