Update sqlmapapi.py

This commit is contained in:
FatihUYSAL 2025-03-24 15:06:11 -04:00 committed by GitHub
parent 74300e4b89
commit 3839c78d2a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,13 +15,12 @@ logging.basicConfig(
format='%(asctime)s - %(levelname)s - %(message)s', # Log format
level=logging.DEBUG, # Set log level to DEBUG
handlers=[
logging.StreamHandler(), # Print logs to console
logging.FileHandler("app.log") # Log to a file as well
logging.StreamHandler() # Print logs to console
]
)
# Using the logger from lib.core.data
from lib.core.data import logger # Use the logger defined in the original code
# Using the logger from lib.core.data (ensure no conflicts)
from lib.core.data import logger
sys.dont_write_bytecode = True
@ -98,9 +97,6 @@ def main():
dirtyPatches()
resolveCrossReferences()
# Set default logging level to debug
logger.setLevel(logging.DEBUG)
# Initialize paths
setPaths(modulePath())