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
1 comments
08:00 Feb 23, 2024
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