We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beb9ee2 commit 207b4d3Copy full SHA for 207b4d3
src/aleph/vm/network/firewall.py
@@ -35,7 +35,7 @@ def execute_json_nft_commands(commands: list[dict]) -> int:
35
logger.debug("Inserting nftables rules")
36
return_code, output, error = nft.json_cmd(commands_dict)
37
if return_code != 0:
38
- logger.error(f"Failed to add nftables rules: {error}")
+ logger.error("Failed to add nftables rules: %s -- %s", error, json.dumps(commands, indent=4))
39
40
return return_code
41
0 commit comments