chore: remove 19 debug console.log statements (F4.2)

Remove all console.log/warn/debug/info from production code across 6
files. Keep console.error for legitimate error handling (72 instances).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-02-09 11:14:05 +01:00
parent efe1fd2a73
commit 3436cd0b90
4 changed files with 2 additions and 26 deletions

View File

@@ -185,25 +185,16 @@ const toDisplayCount = (value, fallback) => {
onMounted(async () => {
try {
const typeId = route.params.id
console.log('=== TYPE DETAIL PAGE LOADING ===')
console.log('Loading type with ID:', typeId)
console.log('Full route params:', route.params)
if (!typeId) {
console.error('No type ID provided in route')
showError('Aucun identifiant de type fourni')
loading.value = false
return
}
const result = await getMachineTypeById(typeId)
console.log('API Result:', result)
if (result.success) {
type.value = result.data
console.log('Type loaded successfully:', type.value)
} else {
console.error('Failed to load type:', result.error)
showError('Type non trouvé')
}
} catch (error) {
@@ -211,7 +202,6 @@ onMounted(async () => {
showError('Erreur lors du chargement')
} finally {
loading.value = false
console.log('Loading finished, loading.value:', loading.value)
}
})
</script>

View File

@@ -206,15 +206,9 @@ const saveChanges = async () => {
onMounted(async () => {
try {
const typeId = route.params.id
console.log('=== EDIT TYPE PAGE LOADING ===')
console.log('Loading type with ID:', typeId)
const result = await getMachineTypeById(typeId, true)
console.log('API Result:', result)
if (result.success) {
type.value = result.data
console.log('Type loaded successfully:', type.value)
// Initialiser les données éditées
editedType.value = {
@@ -236,7 +230,6 @@ onMounted(async () => {
showError('Erreur lors du chargement')
} finally {
loading.value = false
console.log('Loading finished, loading.value:', loading.value)
}
})
</script>