private printUpdatesToConsole()

in libraries/azure-app-configuration-importer/src/appConfigurationImporter.ts [114:129]


  private printUpdatesToConsole(
    settingsToAdd: SetConfigurationSettingParam<string | FeatureFlagValue | SecretReferenceValue>[], 
    settingsToDelete: ConfigurationSetting<string>[]
  ): void {
    console.log("The following settings will be removed from App Configuration:");
    for (const setting of settingsToDelete) {

      console.log(JSON.stringify({key: setting.key, label: setting.label, contentType: setting.contentType, tags: setting.tags}));
    } 

    console.log("\nThe following settings will be written to App Configuration:");
    for (const setting of settingsToAdd) {

      console.log(JSON.stringify({key: setting.key, label: setting.label, contentType: setting.contentType, tags: setting.tags}));
    }
  }