2

Hi, I want to use otroslogviewer batch processing feature. How can I call ExampleLogDataParsedListener? I write olv-batch.bat -c examples.examplelogdataparsedlistener xml.txt, but I get these messages:

can not load log data collector : examples.examplelogdataparsedlistener

KrzyH
  • 4,256
  • 1
  • 31
  • 43
dev
  • 271
  • 1
  • 3
  • 11

1 Answers1

1

You have replaced upper case with lower case in class name. Try to run like this:

olv-batch.bat -c examples.ExampleLogDataParsedListener
KrzyH
  • 4,256
  • 1
  • 31
  • 43