Skip to main content
Solved

Celoxtractor - Custom Messages in Extraction Log

  • January 27, 2023
  • 1 reply
  • 1 view

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.

View original

Forum|alt.badge.img+10

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.


Reply