From 8e8d95fc2b28352decab55be6be3e8c8190ca8ac Mon Sep 17 00:00:00 2001 From: Jeroen Oudshoorn Date: Sat, 14 Oct 2023 20:19:40 +0200 Subject: [PATCH] v2.4.7 Signed-off-by: Jeroen Oudshoorn --- pwnagotchi/plugins/default/gdrivesync.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pwnagotchi/plugins/default/gdrivesync.py b/pwnagotchi/plugins/default/gdrivesync.py index 69687860..a1bc4fb1 100644 --- a/pwnagotchi/plugins/default/gdrivesync.py +++ b/pwnagotchi/plugins/default/gdrivesync.py @@ -174,6 +174,7 @@ class GdriveSync(plugins.Plugin): relative_filename = os.path.join(gdrive_folder, relative_path, filename) gdrive_file = self.drive.CreateFile({'title': relative_filename, 'parents': [{'id': folder['id']}]}) gdrive_file.Upload() + logging.info(f"[gDriveSync] Uploaded {file_path} to Google Drive") uploaded_files_count += 1 # Print the number of uploaded files