Different Log errors

Hi guys,

after updating to OH 2.4 stable, I’m getting the following errors in the log:

2018-12-27 20:45:15.565 [INFO ] [ternal.communicator.client.RpcClient] - Interface 'WIRED' on gateway 'OEQ0310424' not available, disabling support
2018-12-27 20:45:15.580 [INFO ] [ternal.communicator.client.RpcClient] - Interface 'CUXD' on gateway 'OEQ0310424' not available, disabling support
2018-12-27 20:45:15.604 [INFO ] [ommunicator.AbstractHomematicGateway] - HmGatewayInfo[id=CCU,type=CCU2,firmware=2.41.5,address=OEQ0310424,rf=true,wired=false,hmip=true,cuxd=false,group=true]
2018-12-27 20:45:29.320 [INFO ] [ng.homematic.internal.misc.MiscUtils] - Datapoint name '${sysVarAlarmZone1}' contains invalid characters, new Datapoint name '__sysVarAlarmZone1_'
2018-12-27 20:45:29.323 [INFO ] [ng.homematic.internal.misc.MiscUtils] - Datapoint name '${sysVarPresence}' contains invalid characters, new Datapoint name '__sysVarPresence_'
2018-12-27 20:45:30.209 [WARN ] [rest.core.item.EnrichedItemDTOMapper] - Failed transforming the state '0' on item 'Trockner_OpState' with pattern 'MAP(waschen.map):%d': Cannot format state '0' to format '%d'
2018-12-27 20:45:30.276 [WARN ] [rest.core.item.EnrichedItemDTOMapper] - Failed transforming the state '0' on item 'Waschmaschine_OpState' with pattern 'MAP(waschen.map):%d': Cannot format state '0' to format '%d'

What’s wrong?

Thanks a lot!

As the error states, there’s something wrong with map transformation. %d is expecting an integer so maybe map transformation outputs a string.

Try changing %d to %s.

And how are those two items defined?

Sorry for my late answer!

This are the two items:

Switch		Waschmaschine						"Waschmaschine"         							<washingmachine>             			  		{channel="homematic:HMIP-PSM:OEQ0310424:0001D709A10649:3#STATE"}
Number		Waschmaschine_OpState				"Waschmaschine Status [MAP(waschen.map):%s]"		<washingmachine>
Switch		Trockner							"Trockner"          	  							<dryer>     	 	               			  	{channel="homematic:HMIP-PSM:OEQ0310424:0001D709A0FE2F:3#STATE"}
Number		Trockner_OpState					"Trockner Status [MAP(waschen.map):%s]" 			<dryer>

I will try your suppose and report.

Thank you!!

Your suppose works! Thanks!!!