From d519f5587d9e943008948db07237aedb21e6d719 Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Wed, 27 Mar 2024 13:43:11 -0600 Subject: [PATCH] add message at end --- src/compiler/file_uploader/on_before_exit.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/file_uploader/on_before_exit.ts b/src/compiler/file_uploader/on_before_exit.ts index 8d0d129aea..bf798eec25 100644 --- a/src/compiler/file_uploader/on_before_exit.ts +++ b/src/compiler/file_uploader/on_before_exit.ts @@ -13,6 +13,7 @@ export function onBeforeExit(paths: [Src, Dest][], actor: UploaderActor) { // If any async behavior happens in 'beforeExit' then 'beforeExit' // will run again. This is need to prevent an infinite loop. // Once clean up is complete we are ready to exit + console.log('File hashing finished'); return; }