diff --git a/cloud/filestore/libs/vfs_fuse/fs.cpp b/cloud/filestore/libs/vfs_fuse/fs.cpp index fa385a8af0c..4fc92f7ef29 100644 --- a/cloud/filestore/libs/vfs_fuse/fs.cpp +++ b/cloud/filestore/libs/vfs_fuse/fs.cpp @@ -51,7 +51,7 @@ int ReplyError( int res = fuse_reply_err(req, errorCode); if (res != 0) { - STORAGE_LOG(TLOG_WARNING, callContext.LogString() + STORAGE_WARN(callContext.LogString() << " fuse_reply_err failed with code " << res); } @@ -84,7 +84,7 @@ int ReplyEntry( int res = fuse_reply_entry(req, e); if (res != 0) { - STORAGE_LOG(TLOG_WARNING, callContext.LogString() + STORAGE_WARN(callContext.LogString() << " fuse_reply_entry failed with code " << res); } @@ -117,7 +117,7 @@ int ReplyCreate( int res = fuse_reply_create(req, e, fi); if (res != 0) { - STORAGE_LOG(TLOG_WARNING, callContext.LogString() + STORAGE_WARN(callContext.LogString() << " fuse_reply_create failed with code " << res); } @@ -150,7 +150,7 @@ int ReplyAttr( int res = fuse_reply_attr(req, attr, attr_timeout); if (res != 0) { - STORAGE_LOG(TLOG_WARNING, callContext.LogString() + STORAGE_WARN(callContext.LogString() << " fuse_reply_attr failed with code " << res); } @@ -182,7 +182,7 @@ int ReplyReadLink( int res = fuse_reply_readlink(req, link); if (res != 0) { - STORAGE_LOG(TLOG_WARNING, callContext.LogString() + STORAGE_WARN(callContext.LogString() << " fuse_reply_readlink failed with code " << res); } @@ -214,7 +214,7 @@ int ReplyOpen( int res = fuse_reply_open(req, fi); if (res != 0) { - STORAGE_LOG(TLOG_WARNING, callContext.LogString() + STORAGE_WARN(callContext.LogString() << " fuse_reply_open failed with code " << res); } @@ -246,7 +246,7 @@ int ReplyWrite( int res = fuse_reply_write(req, count); if (res != 0) { - STORAGE_LOG(TLOG_WARNING, callContext.LogString() + STORAGE_WARN(callContext.LogString() << " fuse_reply_write failed with code " << res); } @@ -279,7 +279,7 @@ int ReplyBuf( int res = fuse_reply_buf(req, buf, size); if (res != 0) { - STORAGE_LOG(TLOG_WARNING, callContext.LogString() + STORAGE_WARN(callContext.LogString() << " fuse_reply_buf failed with code " << res); } @@ -311,7 +311,7 @@ int ReplyStatFs( int res = fuse_reply_statfs(req, stbuf); if (res != 0) { - STORAGE_LOG(TLOG_WARNING, callContext.LogString() + STORAGE_WARN(callContext.LogString() << " fuse_reply_statfs failed with code " << res); } @@ -343,7 +343,7 @@ int ReplyXAttr( int res = fuse_reply_xattr(req, count); if (res != 0) { - STORAGE_LOG(TLOG_WARNING, callContext.LogString() + STORAGE_WARN(callContext.LogString() << " fuse_reply_xattr failed with code " << res); } @@ -375,7 +375,7 @@ int ReplyLock( int res = fuse_reply_lock(req, lock); if (res != 0) { - STORAGE_LOG(TLOG_WARNING, callContext.LogString() + STORAGE_WARN(callContext.LogString() << " fuse_reply_lock failed with code " << res); } @@ -407,7 +407,7 @@ void CancelRequest( req, static_cast(callContext.CancellationCode)); if (res != 0) { - STORAGE_LOG(TLOG_WARNING, callContext.LogString() + STORAGE_WARN(callContext.LogString() << " fuse_cancel_request failed with code " << res) } diff --git a/cloud/filestore/libs/vfs_fuse/loop.cpp b/cloud/filestore/libs/vfs_fuse/loop.cpp index c0d34647b2f..6c7678139ce 100644 --- a/cloud/filestore/libs/vfs_fuse/loop.cpp +++ b/cloud/filestore/libs/vfs_fuse/loop.cpp @@ -169,7 +169,7 @@ class TCompletionQueue final STORAGE_INFO( "[f:%s] StopAsync: completing left: %ld, requests left: %u, " - "fuse cancelation code: %u", + "fuse cancellation code: %u", FileSystemId.c_str(), completingCount, requestsSize,