Skip to content

Commit

Permalink
Merge pull request #8 from karintou8710/develop
Browse files Browse the repository at this point in the history
ログレベルの変更
  • Loading branch information
karintou8710 authored Jul 27, 2021
2 parents c08092e + a3fd1ad commit a3677c6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ http://educate.academic.hokudai.ac.jp/seiseki/GradeDistSerch.aspx

# License

このプロジェクトは MIT license です。
このプロジェクトは [MIT license](https://en.wikipedia.org/wiki/MIT_License) です。

4 changes: 2 additions & 2 deletions client/src/components/search/Pagination.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="text-center my-10">
<p v-if="count !== null">
{{ count }}件
{{ count }}件
</p>
<!-- PC -->
<v-pagination
Expand Down Expand Up @@ -84,4 +84,4 @@ export default {
}
}
};
</script>
</script>
11 changes: 5 additions & 6 deletions server/iNAZO/settings/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,20 @@
},
'loggers': {
# 自作したログ出力
'': {
'api': {
'handlers': ['console'],
'level': 'DEBUG',
'propagate': False,
},
# Djangoのエラー・警告・開発WEBサーバのアクセスログ
'django': {
'scraping': {
'handlers': ['console'],
'level': 'INFO',
'propagate': False,
},
# 実行SQL
'django.db.backends': {
# Djangoのエラー・警告・開発WEBサーバのアクセスログ
'django': {
'handlers': ['console'],
'level': 'DEBUG',
'level': 'INFO',
'propagate': False,
},
}
Expand Down

1 comment on commit a3677c6

@vercel
Copy link

@vercel vercel bot commented on a3677c6 Jul 27, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.