diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2019-06-14 22:54:19 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-06-14 22:54:19 +0900 |
| commit | 2bd03ca72546bfc4a42551893f2d8f11f1bf6861 (patch) | |
| tree | ae35d989983aa69de930d85240c1fe7110abb3b3 /src/services | |
| parent | image以外はproxyしないように (#5051) (diff) | |
| download | sharkey-2bd03ca72546bfc4a42551893f2d8f11f1bf6861.tar.gz sharkey-2bd03ca72546bfc4a42551893f2d8f11f1bf6861.tar.bz2 sharkey-2bd03ca72546bfc4a42551893f2d8f11f1bf6861.zip | |
Use halfwidth space instead of fullwidth space in code (#5054)
Diffstat (limited to 'src/services')
| -rw-r--r-- | src/services/logger.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/logger.ts b/src/services/logger.ts index 190bbdd253..c393f017c2 100644 --- a/src/services/logger.ts +++ b/src/services/logger.ts @@ -90,7 +90,7 @@ export default class Logger { } } - public warn(message: string, data?: Record<string, any> | null, important = false): void { // 実行を継続できるが改善すべき状況で使う + public warn(message: string, data?: Record<string, any> | null, important = false): void { // 実行を継続できるが改善すべき状況で使う this.log('warning', message, data, important); } |