tsdb/file-rw: fix log msg
This commit is contained in:
parent
800cbfbb05
commit
867ce92dcc
|
@ -131,7 +131,7 @@ static int32_t tsdbWriteFilePage(STsdbFD *pFD) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pFD->s3File) {
|
if (pFD->s3File) {
|
||||||
tsdbWarn("%s file:%d", __func__, pFD->path);
|
tsdbWarn("%s file: %s", __func__, pFD->path);
|
||||||
return code;
|
return code;
|
||||||
}
|
}
|
||||||
if (pFD->pgno > 0) {
|
if (pFD->pgno > 0) {
|
||||||
|
@ -287,7 +287,7 @@ int32_t tsdbFsyncFile(STsdbFD *pFD) {
|
||||||
int32_t code = 0;
|
int32_t code = 0;
|
||||||
|
|
||||||
if (pFD->s3File) {
|
if (pFD->s3File) {
|
||||||
tsdbWarn("%s file:%d", __func__, pFD->path);
|
tsdbWarn("%s file: %s", __func__, pFD->path);
|
||||||
return code;
|
return code;
|
||||||
}
|
}
|
||||||
code = tsdbWriteFilePage(pFD);
|
code = tsdbWriteFilePage(pFD);
|
||||||
|
|
Loading…
Reference in New Issue