diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2016-12-29 20:16:06 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2016-12-29 20:16:06 +0900 |
| commit | fde9d1bd20efc200095400a38020586d20b1359f (patch) | |
| tree | b3dc15fc49e477b2f6c2f251e84b669fd553c221 /src | |
| parent | :sparkles: (diff) | |
| download | sharkey-fde9d1bd20efc200095400a38020586d20b1359f.tar.gz sharkey-fde9d1bd20efc200095400a38020586d20b1359f.tar.bz2 sharkey-fde9d1bd20efc200095400a38020586d20b1359f.zip | |
Update log message
Diffstat (limited to 'src')
| -rw-r--r-- | src/utils/check-dependencies.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/check-dependencies.ts b/src/utils/check-dependencies.ts index a7adaa695f..77665e5acc 100644 --- a/src/utils/check-dependencies.ts +++ b/src/utils/check-dependencies.ts @@ -15,8 +15,8 @@ function checkDependency(serviceName: string, command: string, transform: (x: st }; const x = exec(command, { silent: true }) as any; if (x.code === code.success) { - log('Info', `${serviceName} ${transform(x.stdout)}`, 'Deps'); + log('Info', `${serviceName} ${transform(x.stdout)} found`, 'Deps'); } else if (x.code === code.notFound) { - log('Warn', `${serviceName} not found`); + log('Warn', `${serviceName} not found`, 'Deps'); } } |