Skip to content

Commit 48f9d72

Browse files
committed
Change app logging level to info and update readme
1 parent 62ecf7f commit 48f9d72

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ Once up, the App binds to port `8000` by default and should be available at: htt
4343

4444
## Making an HTTP request
4545

46-
The App accepts GET and POST requests with **two manadatory parameters** `owner` & `repo`.
46+
The App accepts GET and POST requests with **two manadatory parameters**:
47+
48+
* `owner` - Organisation or User who owns the repository
49+
* `repo` - Name of the Repository
4750

4851
For Example:
4952

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
app = Flask('github-cctray')
1010

1111
# Configure logging
12-
logging.basicConfig(level=logging.DEBUG)
12+
logging.basicConfig(level=logging.INFO)
1313
logger = app.logger
1414

1515

0 commit comments

Comments
 (0)