Skip to content

Commit c3c4819

Browse files
Fix no-op catch in Hayward remote control handler (#1182)
1 parent ca2c04c commit c3c4819

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

controller/nixie/pumps/Pump.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ export class NixiePumpHWVS extends NixiePumpRS485 {
958958
}
959959
}
960960
}
961-
} catch(err) { `Error sending setPumpToRemoteControl message for ${this.pump.name}: ${err.message}` };
961+
} catch(err) { logger.error(`Error sending setPumpToRemoteControl message for ${this.pump.name}: ${err.message}`); };
962962
}
963963
protected async setPumpRPMAsync() {
964964
// Address 1

0 commit comments

Comments
 (0)