Skip to content

Commit

Permalink
Merge pull request #250 from cs50/logger
Browse files Browse the repository at this point in the history
temporarily disable logger writer
  • Loading branch information
Kareem Zidane authored Mar 8, 2021
2 parents 3a1037a + 6f038a4 commit 474d075
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions check50/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,8 @@ def main():

# Create a working_area (temp dir) named - with all included student files
with CheckRunner(checks_file, included_files) as check_runner, \
contextlib.redirect_stdout(LoggerWriter(LOGGER, logging.INFO)), \
contextlib.redirect_stderr(LoggerWriter(LOGGER, logging.INFO)):
contextlib.redirect_stdout(LoggerWriter(LOGGER, logging.NOTSET)), \
contextlib.redirect_stderr(LoggerWriter(LOGGER, logging.NOTSET)):

check_results = check_runner.run(args.target)
results = {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
"console_scripts": ["check50=check50.__main__:main"]
},
url="https://github.com/cs50/check50",
version="3.2.1",
version="3.2.2",
include_package_data=True
)

0 comments on commit 474d075

Please sign in to comment.