Skip to main content
Solved

Celoxtractor - Custom Messages in Extraction Log

  • January 27, 2023
  • 1 reply
  • 13 views

Forum|alt.badge.img+10

Greetings,

is it possible to display custom messages, defined in the python script of the celoxtractor, in the real time log of a extraction (when the extraction gets executed)?

 

We are currently writing debug messages to local logs on the celoxtractor server. Having it directly in Celonis would be a blessing.

 

Best Regards

Best answer by jannes.nagel12

Just use the print method from python. The issue in our case was that the print was contained in a while looping which resulted in the print statements beeing sent out only after the while loop completed and not if it fails.

1 reply

Forum|alt.badge.img+10
  • Author
  • Level 1
  • Answer
  • January 30, 2023

Just use the print method from python. The issue in our case was that the print was contained in a while looping which resulted in the print statements beeing sent out only after the while loop completed and not if it fails.