change log level of path open / close message to Debug

This commit is contained in:
aler9 2021-11-15 18:04:05 +01:00
parent b4155a4fdf
commit cbd341b864

View File

@ -292,7 +292,7 @@ func newPath(
apiPathsList: make(chan pathAPIPathsListSubReq),
}
pa.log(logger.Info, "opened")
pa.log(logger.Debug, "opened")
pa.wg.Add(1)
go pa.run()
@ -489,7 +489,7 @@ func (pa *path) run() {
pa.log(logger.Info, "runOnDemand command stopped")
}
pa.log(logger.Info, "closed (%v)", err)
pa.log(logger.Debug, "closed (%v)", err)
pa.parent.onPathClose(pa)
}