class GetStream(object): def __init__(self, pLog): self.terminal = sys.stdout self.log = pLog def write(self, message): self.terminal.write(message) try: self.log.write(message) except UnicodeEncodeError: self.log.write(message.encode('LATIN-1')) arcpy.AddMessage(message)
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.