diff --git a/pkg/sqlite/sqlite.go b/pkg/sqlite/sqlite.go index b4003350931a9423dc93d0c4b95f600f9e358ae2..1527ee01f1f55141a344902c94c8fc58e14f252f 100644 --- a/pkg/sqlite/sqlite.go +++ b/pkg/sqlite/sqlite.go @@ -52,7 +52,7 @@ func NewSQLite(cfg map[string]string) (*Context, error) { if cfg["db_path"] == "" { return nil, fmt.Errorf("please specify a 'db_path' to SQLite db in the configuration") } - log.Infof("Starting SQLite backend, path:%s", cfg["db_path"]) + log.Debugf("Starting SQLite backend, path:%s", cfg["db_path"]) c.Db, err = gorm.Open("sqlite3", cfg["db_path"]+"?_busy_timeout=1000") if err != nil {