From b684d59bdbd2b26a4030a5f4898664186164719f Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Tue, 26 Apr 2022 19:54:25 -0500 Subject: [PATCH] Add more detail to individual file logging --- build-lists.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-lists.js b/build-lists.js index 471359e..fc1e4d4 100644 --- a/build-lists.js +++ b/build-lists.js @@ -304,14 +304,15 @@ class BuildLists { console.timeEnd(methodName) if ( cliOptions.withApi ) { - console.log('Saving individual endpoints...') + console.log('\n', `-- Starting individual /${ listOptions.name } endpoints`) - const endpointMethodName = `Saved /${ listOptions.name } endpoints` + const endpointMethodName = `Finished individual /${ listOptions.name } endpoints` console.time(endpointMethodName) await this.saveApiEndpoints( listOptions ) console.timeEnd(endpointMethodName) + console.log( '\n\n' ) } }