By searching through the firmware I accidentally found the function that translates this numbers.
I use this simple lua script to translate it
result=call_func_ptr(0xFF1B0F18,0x10a5)
print(string.format("0x%x", result))
The function can be found here
FF08F414 ADR R1, aLogicalevent0x04xAdrPParaLd ; "LogicalEvent:0x%04x:adr:%p,Para:%ld"
FF08F418 MOV R0, #0x60
FF08F41C BL _sub_FF087AC8__CameraLog_c__237 ; LOCATION: CameraLog.c:237
FF08F420 MOV R0, R5
FF08F424 BL sub_FF08F03C
FF08F428 CMP R0, #0
FF08F42C BEQ loc_FF08F444
FF08F430 MOV R0, R5
FF08F434 BL sub_FF1B0F18 <-----------------------
FF08F438 MOV R1, R4
FF08F43C BL sub_FF0913E4
Maybe useful for somebody.