Skip to content
Snippets Groups Projects
Commit 4b135733 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Fix logger syntax.

parent 84872f97
Branches
Tags
1 merge request!5Resolve "Add mapping and trimming"
Pipeline #1024 passed with stage
in 7 seconds
......@@ -66,7 +66,7 @@ def main():
# Create a file handler
handler = logging.FileHandler('qc.log')
LOGGER.addHandler(handler)
logger.addHandler(handler)
# Check if tools are present
check_tools()
......
......@@ -74,7 +74,7 @@ def main():
# Create a file handler
handler = logging.FileHandler('trim.log')
LOGGER.addHandler(handler)
logger.addHandler(handler)
# Check if tools are present
check_tools()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment