summaryrefslogtreecommitdiffstats
path: root/utils/file_backend_local.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/file_backend_local.go')
-rw-r--r--utils/file_backend_local.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/utils/file_backend_local.go b/utils/file_backend_local.go
index 1367ccc1e..f85ace55a 100644
--- a/utils/file_backend_local.go
+++ b/utils/file_backend_local.go
@@ -9,8 +9,7 @@ import (
"os"
"path/filepath"
- l4g "github.com/alecthomas/log4go"
-
+ "github.com/mattermost/mattermost-server/mlog"
"github.com/mattermost/mattermost-server/model"
)
@@ -28,7 +27,7 @@ func (b *LocalFileBackend) TestConnection() *model.AppError {
return model.NewAppError("TestFileConnection", "Don't have permissions to write to local path specified or other error.", nil, err.Error(), http.StatusInternalServerError)
}
os.Remove(filepath.Join(b.directory, TEST_FILE_PATH))
- l4g.Info("Able to write files to local storage.")
+ mlog.Info("Able to write files to local storage.")
return nil
}