mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
core: add debug line when an IO backend is created. A user can check that the correct one has been selected.
This commit is contained in:
parent
2596e0800e
commit
5a45df84db
5 changed files with 9 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
use crate::{Completion, File, LimboError, OpenFlags, Result, IO};
|
||||
use log::trace;
|
||||
use log::{debug, trace};
|
||||
use std::cell::RefCell;
|
||||
use std::io::{Read, Seek, Write};
|
||||
use std::rc::Rc;
|
||||
|
@ -8,6 +8,7 @@ pub struct WindowsIO {}
|
|||
|
||||
impl WindowsIO {
|
||||
pub fn new() -> Result<Self> {
|
||||
debug!("Using IO backend 'syscall'");
|
||||
Ok(Self {})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue