diff --git a/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_winfsp_drive.cpp b/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_winfsp_drive.cpp index 5ccf1566..28aa172d 100644 --- a/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_winfsp_drive.cpp +++ b/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_winfsp_drive.cpp @@ -352,7 +352,6 @@ auto remote_winfsp_drive::Read(PVOID /*file_node*/, PVOID file_desc, auto ret = remote_instance_->winfsp_read( file_desc, buffer, offset, length, reinterpret_cast(bytes_transferred)); - fmt::println("read|len|{}|ret|{}|bytes|{}", length, ret, *bytes_transferred); if ((ret == STATUS_SUCCESS) && (*bytes_transferred != length)) { ::SetLastError(ERROR_HANDLE_EOF); } diff --git a/repertory/repertory_test/src/winfsp_drive_rdrw_test.cpp b/repertory/repertory_test/src/winfsp_drive_rdrw_test.cpp index 5695e951..98a03513 100644 --- a/repertory/repertory_test/src/winfsp_drive_rdrw_test.cpp +++ b/repertory/repertory_test/src/winfsp_drive_rdrw_test.cpp @@ -340,8 +340,6 @@ static void test_overlapped_file(auto &&mount_location, auto &&file_path, read_buffer.clear(); read_buffer.resize(buffer_size); overlapped.Offset = 3U * bytes_per_sector; - fmt::println("size|{}|offset|{}|buf_size|{}", size.QuadPart, - overlapped.Offset, buffer_size); ret = ::ReadFile(handle, read_buffer.data(), bytes_per_sector, &bytes_read, &overlapped); EXPECT_TRUE(ret || ERROR_IO_PENDING == ::GetLastError() || diff --git a/repertory/repertory_test/src/winfsp_drive_rename_test.cpp b/repertory/repertory_test/src/winfsp_drive_rename_test.cpp index e03e106b..5cd67322 100644 --- a/repertory/repertory_test/src/winfsp_drive_rename_test.cpp +++ b/repertory/repertory_test/src/winfsp_drive_rename_test.cpp @@ -157,7 +157,6 @@ TYPED_TEST(winfsp_test, rename_dir_succeeds_if_dest_does_not_exist) { ASSERT_TRUE(::CreateDirectoryA(dir_path.c_str(), nullptr)); EXPECT_TRUE(::MoveFileExA(dir_path.c_str(), dir_path2.c_str(), 0)); - fmt::println("error|{}", ::GetLastError()); EXPECT_TRUE(::RemoveDirectoryA(dir_path2.c_str())); }