leandron commented on a change in pull request #6578: URL: https://github.com/apache/incubator-tvm/pull/6578#discussion_r496727105
########## File path: python/tvm/driver/tvmc/common.py ########## @@ -17,10 +17,19 @@ """ Common utility functions shared by TVMC modules. """ +import logging + +from urllib.parse import urlparse + from tvm import relay from tvm import transform +# TODO migrate compiler logger to the common logger (@leandron) +# pylint: disable=invalid-name +logger = logging.getLogger("TVMC") Review comment: Done. I suppose you mean #6577. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org