mirror of https://bitbucket.org/ausocean/av.git
Fixed error
This commit is contained in:
parent
98699a455c
commit
a40f4a7236
|
@ -110,7 +110,7 @@ type RevidInst interface {
|
|||
Stop()
|
||||
ChangeState(newconfig Config) error
|
||||
GetConfigRef() *Config
|
||||
Log(type, m string)
|
||||
Log(logType, m string)
|
||||
IsRunning() bool
|
||||
}
|
||||
|
||||
|
@ -170,8 +170,8 @@ func (r *revidInst) ChangeState(newconfig Config) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (r *revidInst) Log(type, m string){
|
||||
r.config.Logger.Log(type,m)
|
||||
func (r *revidInst) Log(logType, m string){
|
||||
r.config.Logger.Log(logType,m)
|
||||
}
|
||||
|
||||
func (r *revidInst)IsRunning() bool {
|
||||
|
|
Loading…
Reference in New Issue