Skip to content

Commit

Permalink
Changed default logging level
Browse files Browse the repository at this point in the history
  • Loading branch information
MSeal committed Nov 18, 2022
1 parent bed2fa5 commit dae55de
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
GITHUB: ${{ toJson(github) }}
with:
notebook: "https://app.noteable.io/f/9b92ef52-29af-498a-bbd1-d14c18b27e5d/What-can-you-do-in-a-Noteable-notebook.ipynb"
# Alternatively ==> notebook: "9b92ef52-29af-498a-bbd1-d14c18b27e5d"
# Alternatively ==> notebook: "noteable://9b92ef52-29af-498a-bbd1-d14c18b27e5d"
params: "PATHTOPARAMS.json"
isReport: False
poll: True
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
SECRETS: ${{ toJson(secrets) }}
GITHUB: ${{ toJson(github) }}
with:
notebook: "9b92ef52-29af-498a-bbd1-d14c18b27e5d"
notebook: "noteable://9b92ef52-29af-498a-bbd1-d14c18b27e5d"
params: "PATHTOPARAMS.json"
isReport: False
poll: True
Expand All @@ -74,7 +74,7 @@ jobs:
SECRETS: ${{ toJson(secrets) }}
GITHUB: ${{ toJson(github) }}
with:
notebook: "a292ef52-29af-498a-bbd1-d14c18b27eed"
notebook: "noteable://a292ef52-29af-498a-bbd1-d14c18b27eed"
- uses: actions/upload-artifact@v3
if: always()
with:
Expand Down
4 changes: 4 additions & 0 deletions lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,13 @@ import papermill as pm
import os
import json
import sys
import logging
from concurrent.futures import ThreadPoolExecutor, as_completed
from time import sleep
logging.basicConfig()
logging.getLogger().setLevel(logging.INFO)
params = {}
paramsPath = '${paramsFile}'
github = json.loads('${githubString}')
Expand Down
4 changes: 4 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,13 @@ import papermill as pm
import os
import json
import sys
import logging
from concurrent.futures import ThreadPoolExecutor, as_completed
from time import sleep
logging.basicConfig()
logging.getLogger().setLevel(logging.INFO)
params = {}
paramsPath = '${paramsFile}'
github = json.loads('${githubString}')
Expand Down

0 comments on commit dae55de

Please sign in to comment.