Add debug output to Store::load_in_cache()
This commit is contained in:
parent
302549d194
commit
c2469b83ce
1 changed files with 1 additions and 0 deletions
|
@ -48,6 +48,7 @@ impl Store {
|
|||
{
|
||||
let idstr : String = id.clone().into();
|
||||
let path = format!("{}/{}-{}.imag", self.storepath, m.name(), idstr);
|
||||
debug!("Loading path = '{}'", path);
|
||||
let mut string = String::new();
|
||||
|
||||
FSFile::open(&path).map(|mut file| {
|
||||
|
|
Loading…
Reference in a new issue