Skip to content

Commit

Permalink
Fixes logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonb5 committed Aug 11, 2023
1 parent b8afe93 commit af8059a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/minimal-notebook/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.DEFAULT_GOAL = build

VERSION = 0.1.11
VERSION = 0.1.12

run: ARGS = -p 8888:8888 -v $(PWD)/../dask-gateway/conda-envs:/conda-envs

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def search(self, **kwargs):
relation = result["hits"]["total"]["relation"]

if total_hits == 10000 and relation == "gte":
logger.debug("Pulling additional documents")
logging.debug("Pulling additional documents")

for idx in range(10):
if len(result["hits"]["hits"]) == 0:
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/minimal-notebook/tbump.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[version]
current = "0.1.11"
current = "0.1.12"

regex = '''
(?P<major>\d+)
Expand Down

0 comments on commit af8059a

Please sign in to comment.