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)
Přihlášení členové mohou přispívat, sledovat aktualizace a další. Jste tu noví? Zaregistrujte si bezplatný účet.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.