chore(backups/RemoteAdapter): add more cache related debug

This commit is contained in:
Julien Fontanet 2022-09-10 14:16:54 +02:00
parent 191c124130
commit 42dd70c2f7

View File

@ -515,6 +515,8 @@ class RemoteAdapter {
}
async #getCachabledDataListVmBackups(dir) {
debug('generating cache', { path: dir })
const handler = this._handler
const backups = {}
@ -554,6 +556,7 @@ class RemoteAdapter {
const cache = await this.#readCache(path)
if (cache !== undefined) {
debug('found VM backups cache, using it', { path })
return cache
}