This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
The following commit(s) were added to refs/heads/main by this push:
new 08d8dc81 chore: fix error log (#374)
08d8dc81 is described below
commit 08d8dc81f676078bc7776ec69bd99ea8cfc811e4
Author: Cancai Cai <[email protected]>
AuthorDate: Sat Jan 20 17:33:37 2024 +0800
chore: fix error log (#374)
---
pkg/wal/wal.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/wal/wal.go b/pkg/wal/wal.go
index 0d9fac6c..eb9d0db0 100644
--- a/pkg/wal/wal.go
+++ b/pkg/wal/wal.go
@@ -251,7 +251,7 @@ func New(path string, options *Options) (WAL, error) {
}
log.start()
- log.logger.Info().Str("path", path).Msg("WAL has be initialized")
+ log.logger.Info().Str("path", path).Msg("WAL has been initialized")
return log, nil
}