mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-16 18:02:56 +00:00
review: remove debug prints
https://github.com/neondatabase/neon/pull/10063#discussion_r1880438898 Signed-off-by: Yuchen Liang <yuchen@neon.tech>
This commit is contained in:
@@ -975,10 +975,7 @@ impl VirtualFileInner {
|
||||
) -> (FullSlice<B>, Result<usize, Error>) {
|
||||
let file_guard = match self.lock_file().await {
|
||||
Ok(file_guard) => file_guard,
|
||||
Err(e) => {
|
||||
println!("ERRORED :(");
|
||||
return (buf, Err(e));
|
||||
}
|
||||
Err(e) => return (buf, Err(e)),
|
||||
};
|
||||
observe_duration!(StorageIoOperation::Write, {
|
||||
let ((_file_guard, buf), result) =
|
||||
|
||||
Reference in New Issue
Block a user