diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2019-02-06 13:52:32 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-02-06 13:52:32 +0900 |
| commit | b299988bb5472210de291a96627bc9b57d474684 (patch) | |
| tree | 6a1aec79d563987f3cc776c38ca996099d2cf77b /src/misc | |
| parent | Introduce option type (#4150) (diff) | |
| download | misskey-b299988bb5472210de291a96627bc9b57d474684.tar.gz misskey-b299988bb5472210de291a96627bc9b57d474684.tar.bz2 misskey-b299988bb5472210de291a96627bc9b57d474684.zip | |
Simplify comment (#4164)
Diffstat (limited to 'src/misc')
| -rw-r--r-- | src/misc/logger.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/logger.ts b/src/misc/logger.ts index 609c255849..7b669c3bb1 100644 --- a/src/misc/logger.ts +++ b/src/misc/logger.ts @@ -45,7 +45,7 @@ export default class Logger { this.log(important ? chalk.bgGreen.white('DONE') : chalk.green('DONE'), chalk.green(message), important); } - public debug(message: string, important = false): void { // デバッグ用に使う(開発者にとっては必要だが利用者にとっては不要な情報) + public debug(message: string, important = false): void { // デバッグ用に使う(開発者に必要だが利用者に不要な情報) if (process.env.NODE_ENV != 'production' || program.verbose) { this.log(chalk.gray('VERB'), chalk.gray(message), important); } |