Update logging message for single directory removal

* Update logging message for single directory removal - we are trying to delete not create
This commit is contained in:
abraunegg 2018-07-19 06:43:30 +10:00
parent d0209d8dbc
commit a491620c1a

View file

@ -268,7 +268,7 @@ final class SyncEngine
} catch (OneDriveException e) {
if (e.httpStatusCode == 404) {
// The directory was not found on OneDrive - no need to delete it
log.vlog("The requested directory to create was not found on OneDrive - skipping removing the remote directory as it doesnt exist");
log.vlog("The requested directory to delete was not found on OneDrive - skipping removing the remote directory as it doesn't exist");
return;
}
}