File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,15 +34,15 @@ class PrintOnlyDelegate : public NonLevelControlDelegate
34
34
PrintOnlyDelegate (EndpointId endpoint) : mEndpoint (endpoint) {}
35
35
CHIP_ERROR HandleOpenValve (ValveStateEnum & currentState, BitMask<ValveFaultBitmap> & valveFault) override
36
36
{
37
- ChipLogProgress (NotSpecified, " VALVE IS OPENING!!!!!" );
37
+ ChipLogProgress (NotSpecified, " VALVE IS OPENING on endpoint %u !!!!!" , mEndpoint );
38
38
state = ValveStateEnum::kOpen ;
39
39
currentState = state;
40
40
return CHIP_NO_ERROR;
41
41
}
42
42
ValveStateEnum GetCurrentValveState () override { return state; }
43
43
CHIP_ERROR HandleCloseValve (ValveStateEnum & currentState, BitMask<ValveFaultBitmap> & valveFault) override
44
44
{
45
- ChipLogProgress (NotSpecified, " VALVE IS CLOSING!!!!!" );
45
+ ChipLogProgress (NotSpecified, " VALVE IS CLOSING on endpoint %u !!!!!" , mEndpoint );
46
46
state = ValveStateEnum::kClosed ;
47
47
currentState = state;
48
48
return CHIP_NO_ERROR;
You can’t perform that action at this time.
0 commit comments