chore: move more logger infos to debugs

This commit is contained in:
2025-09-05 19:52:53 -06:00
parent 448d8a68d2
commit 52b1e8ffa3
11 changed files with 55 additions and 58 deletions

View File

@@ -206,7 +206,7 @@ export default class SearchAreaView extends Vue {
this.searchBox = settings.searchBoxes?.[0] || null;
this.resetLatLong();
logger.info("[SearchAreaView] Component mounted", {
logger.debug("[SearchAreaView] Component mounted", {
hasStoredSearchBox: !!this.searchBox,
searchBoxName: this.searchBox?.name,
coordinates: this.searchBox?.bbox,
@@ -317,7 +317,7 @@ export default class SearchAreaView extends Vue {
this.searchBox = newSearchBox;
this.isChoosingSearchBox = false;
logger.info("[SearchAreaView] Search box stored successfully", {
logger.debug("[SearchAreaView] Search box stored successfully", {
searchBox: newSearchBox,
coordinates: newSearchBox.bbox,
});
@@ -360,7 +360,7 @@ export default class SearchAreaView extends Vue {
this.isChoosingSearchBox = false;
this.isNewMarkerSet = false;
logger.info("[SearchAreaView] Search box deleted successfully");
logger.debug("[SearchAreaView] Search box deleted successfully");
// Enhanced notification system with proper timeout
this.notify?.success(NOTIFY_SEARCH_AREA_DELETED.text, TIMEOUTS.STANDARD);