Skip to content

Commit

Permalink
Another way to turn off logging
Browse files Browse the repository at this point in the history
  • Loading branch information
vblagoje committed Aug 4, 2023
1 parent b02e15d commit 86c0aee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/web_lfqa_improved.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
pipeline.add_node(component=litm_ranker, name="LostInTheMiddleRanker", inputs=["DiversityRanker"])
pipeline.add_node(component=prompt_node, name="PromptNode", inputs=["LostInTheMiddleRanker"])

logging.basicConfig(level=logging.CRITICAL) # pylint: disable
logging.disable(logging.CRITICAL)


questions = [
Expand Down

0 comments on commit 86c0aee

Please sign in to comment.