Skip to content

Commit 6f82ef3

Browse files
committed
Remove debug log from GetCookingData function
Eliminated a console.log statement that was used for debugging purposes in the GetCookingData function to clean up console output.
1 parent 6a34047 commit 6f82ef3

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/Utility/Parsers/parseCookingItems.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ export const GetCookingData = (cooked: itemType, known: itemsType[]): cookingDat
3636
let cookedTimes = GetCooked(cooked.item, item.id)
3737
if(cookedTimes > 0) alreadyCooked++;
3838
if(knownDish) knownRecipes++;
39-
console.log('Dish:', item.Name, 'Known:', knownRecipes, 'CookedTimes:', alreadyCooked)
4039
let d = {
4140
name: translateDishNames(item.Name),
4241
id: item.id,

0 commit comments

Comments
 (0)