Cleaning up usage of console log in front end

This commit is contained in:
Jesper Kristensen
2025-05-15 21:53:07 +02:00
parent 20c1c3f66b
commit 84e0605835
18 changed files with 40 additions and 48 deletions

View File

@@ -408,7 +408,7 @@ export const deleteModel = async (token: string, tagName: string, urlIdx: string
return res.json();
})
.then((json) => {
console.log(json);
console.debug(json);
return true;
})
.catch((err) => {

View File

@@ -343,7 +343,7 @@ export const getAndUpdateUserLocation = async (token: string) => {
await updateUserInfo(token, { location: location });
return location;
} else {
console.log('Failed to get user location');
console.info('Failed to get user location');
return null;
}
};