diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2016-12-29 20:11:05 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2016-12-29 20:11:05 +0900 |
| commit | 966408f26f4717fb928aea4452ea7e702320a23a (patch) | |
| tree | 091139b24a12aef60d70561c57f118f04fedd254 /src/utils | |
| parent | :sparkles: (diff) | |
| download | sharkey-966408f26f4717fb928aea4452ea7e702320a23a.tar.gz sharkey-966408f26f4717fb928aea4452ea7e702320a23a.tar.bz2 sharkey-966408f26f4717fb928aea4452ea7e702320a23a.zip | |
:sparkles:
Diffstat (limited to 'src/utils')
| -rw-r--r-- | src/utils/check-dependencies.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/check-dependencies.ts b/src/utils/check-dependencies.ts index 6265e9aad7..2576773f80 100644 --- a/src/utils/check-dependencies.ts +++ b/src/utils/check-dependencies.ts @@ -15,7 +15,7 @@ function checkDependency(serviceName: string, command: string, transform: (x: st }; const x = exec(command, { silent: true }) as any; if (x.code === code.success) { - log('Info', `DEPS: ${serviceName} ${transform(x.stdout)}`); + log('Info', `${serviceName} ${transform(x.stdout)}`, 'Deps'); } else if (x.code === code.notFound) { log('Warn', `Unable to find ${serviceName}`); } |