File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -132,6 +132,8 @@ def _wac_compose_impl(ctx):
132132 # Disable network access to prevent registry lookups
133133 "NO_PROXY" : "*" ,
134134 "no_proxy" : "*" ,
135+ # Enable trace logging for debugging WAC issues
136+ "RUST_LOG" : "trace" ,
135137 },
136138 )
137139
Original file line number Diff line number Diff line change @@ -41,6 +41,10 @@ def _wac_plug_impl(ctx):
4141 outputs = [composed_wasm ],
4242 mnemonic = "WacPlug" ,
4343 progress_message = "Plugging WASM components for %s" % ctx .label ,
44+ env = {
45+ # Enable trace logging for debugging WAC issues
46+ "RUST_LOG" : "trace" ,
47+ },
4448 )
4549
4650 # Return provider
Original file line number Diff line number Diff line change @@ -186,6 +186,8 @@ def _wac_remote_compose_impl(ctx):
186186 # Disable network access to prevent registry lookups during composition
187187 "NO_PROXY" : "*" ,
188188 "no_proxy" : "*" ,
189+ # Enable trace logging for debugging WAC issues
190+ "RUST_LOG" : "trace" ,
189191 },
190192 )
191193
You can’t perform that action at this time.
0 commit comments