diff --git a/src/store/printer/getters.ts b/src/store/printer/getters.ts index e8796a55f..2560f8db4 100644 --- a/src/store/printer/getters.ts +++ b/src/store/printer/getters.ts @@ -184,7 +184,6 @@ export const getters: GetterTree = { }, getFans: (state, getters) => { - console.log("get fans") const fans: PrinterStateFan[] = [] const supportedFans = ['temperature_fan', 'controller_fan', 'heater_fan', 'fan_generic', 'fan'] const objects = getters.getPrinterObjects(supportedFans) @@ -215,7 +214,6 @@ export const getters: GetterTree = { }, getLights: (state, getters) => { - console.log("get lights") const lights: PrinterStateLight[] = [] const supportedObjects = ['dotstar', 'led', 'neopixel', 'pca9533', 'pca9632'] const objects = getters.getPrinterObjects(supportedObjects) @@ -296,7 +294,6 @@ export const getters: GetterTree = { }, getMiscellaneous: (state) => { - console.log("get misc") const output: PrinterStateMiscellaneous[] = [] const supportedObjects = ['controller_fan', 'heater_fan', 'fan_generic', 'fan', 'output_pin'] @@ -385,7 +382,6 @@ export const getters: GetterTree = { }, getFilamentSensors: (state) => { - console.log("get sensors") const sensorObjectNames = ['filament_switch_sensor', 'filament_motion_sensor'] const sensors: PrinterStateFilamentSensors[] = []