chore: adjust loglevel of reverse geocoding intializer to LOG (#3303)

This commit is contained in:
oddlama
2023-07-17 04:57:20 +02:00
committed by GitHub
parent c8f1a15f21
commit c415ee82d1

View File

@ -49,7 +49,7 @@ export class MetadataExtractionProcessor {
}
async init(deleteCache = false) {
this.logger.warn(`Reverse geocoding is ${this.reverseGeocodingEnabled ? 'enabled' : 'disabled'}`);
this.logger.log(`Reverse geocoding is ${this.reverseGeocodingEnabled ? 'enabled' : 'disabled'}`);
if (!this.reverseGeocodingEnabled) {
return;
}