Question

Write custome logs in "Script Task"

Hi Community,

 

Is there a way we can write custome logs in "Script Task"?

 

For example will put Console.Writeline("Logs"); then we will be able to see these custom logs in process log. 

 

 

Like 0

Like

1 comments

Hello,

For logging in server side we can use Telemetry log for Creatio | Creatio Marketplace.

 

Use this in Using under methods tab in Business process: global::Common.Logging

 

Code : ILog logger = LogManager.GetLogger("TestLog");

            logger.Info("test");

           

Show all comments