diff --git a/main.py b/main.py index c2c2ff8c878..5535622d6f1 100644 --- a/main.py +++ b/main.py @@ -8,6 +8,11 @@ from comfy.cli_args import args from app.logger import setup_logger +if __name__ == "__main__": + #NOTE: These do not do anything on core ComfyUI which should already have no communication with the internet, they are for custom nodes. + os.environ['HF_HUB_DISABLE_TELEMETRY'] = '1' + os.environ['DO_NOT_TRACK'] = '1' + setup_logger(log_level=args.verbose)