I just started with LogMX and I run into a simple problem while analysing logfiles from a robot: Some of my entries do have a "Message" others don't. It looks like the parse fails whenever an entry has no "Message". I hope this can be solved without a java class parser:
Here some example lines from my logfiles:
Code: Select all
2010-09-23 18:13:56,469 INFO MxDrive:Y: sajet_motion.MotionController.driveActionDone: driveName = [Y]
2010-09-23 18:13:56,469 INFO MxDrive:Y: sajet_motion.MotionController.driveActionDone: action = [move]
2010-09-23 18:13:56,589 INFO MxDrive:S: drive_maxon.MxDrive:S.executeMoveToReferencePosition
2010-09-23 18:13:56,619 INFO MxDrive:S: drive_maxon.MxDrive:S.enterStateOperationEnable: maxon state = ON
2010-09-23 18:13:56,619 INFO MxDrive:S: drive_maxon.MxDrive:S.enterStateOperationEnable: write parameters
I tried to use the log4jpattern parser:
Code: Select all
%d{yyyy-dd-MM HH:mm:ss,SSS} %p %u{Controller} %c %m
Thanks for any ideas...