Browse Source

dont overwrite the log on each run, and use dedicated log for scheduled archiving

Nick Sweeting 4 years ago
parent
commit
534ae60ab0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      archivebox/main.py

+ 2 - 2
archivebox/main.py

@@ -1036,8 +1036,8 @@ def schedule(add: bool=False,
             '&&',
             quoted(ARCHIVEBOX_BINARY),
             *(['add', f'--depth={depth}', f'"{import_path}"'] if import_path else ['update']),
-            '>',
-            quoted(Path(LOGS_DIR) / 'archivebox.log'),
+            '>>',
+            quoted(Path(LOGS_DIR) / 'schedule.log'),
             '2>&1',
 
         ]