fix!: Use event as a differentiator for frappe.utils.log

This commit is contained in:
Gavin D'souza 2022-04-21 13:32:28 +05:30
parent c691537e61
commit 418dcdd2f4

View file

@ -277,7 +277,7 @@ def get_traceback(with_context=False) -> str:
def log(event, details):
frappe.logger().info(details)
frappe.logger(event).info(details)
def dict_to_str(args, sep="&"):