changed logging order

This commit is contained in:
Kosta Mushkin
2025-07-25 15:03:39 -04:00
parent b6325c6ce4
commit 61e1bb6a67
27 changed files with 269 additions and 263 deletions
+3 -2
View File
@@ -57,13 +57,12 @@ Script Flow:
8. Cleans up by deleting both VPGs
"""
# Configure logging BEFORE any imports
import logging
# Configure logging before any other imports or code
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(levelname)s - %(message)s'
)
import argparse
import urllib3
import json
@@ -106,6 +105,8 @@ def main():
parser.add_argument("--vm2", required=True, help="Name of second VM to protect")
args = parser.parse_args()
logging.warning("TEST TEST TEST")
try:
# Setup clients and get site identifiers
client1 = setup_clients(args)