mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 00:50:23 -05:00
chore: adjust loglevel of reverse geocoding intializer to LOG (#3303)
This commit is contained in:
parent
c8f1a15f21
commit
c415ee82d1
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ export class MetadataExtractionProcessor {
|
||||||
}
|
}
|
||||||
|
|
||||||
async init(deleteCache = false) {
|
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) {
|
if (!this.reverseGeocodingEnabled) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue