diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-07-14 20:58:21 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-07-14 20:58:21 +0900 |
| commit | d50e99c17bddc04ca7a09b85a70603ff5404739a (patch) | |
| tree | 13d3818eff769fd7a1e517ab0a6fa1a5a4ae70c3 /src/misc/dependencyInfo.ts | |
| parent | :sparkles: (diff) | |
| download | misskey-d50e99c17bddc04ca7a09b85a70603ff5404739a.tar.gz misskey-d50e99c17bddc04ca7a09b85a70603ff5404739a.tar.bz2 misskey-d50e99c17bddc04ca7a09b85a70603ff5404739a.zip | |
Update log messages
Diffstat (limited to 'src/misc/dependencyInfo.ts')
| -rw-r--r-- | src/misc/dependencyInfo.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/dependencyInfo.ts b/src/misc/dependencyInfo.ts index 89af0d20fb..829f8d9809 100644 --- a/src/misc/dependencyInfo.ts +++ b/src/misc/dependencyInfo.ts @@ -21,7 +21,7 @@ export default class { const x = execSync(command, { stdio: ['pipe', 'pipe', 'ignore'] }); const ver = transform(x.toString()); if (ver != null) { - this.logger.info(`${serviceName} ${ver[1]} found`); + this.logger.succ(`${serviceName} ${ver[1]} found`); } else { this.logger.warn(`${serviceName} not found`); this.logger.warn(`Regexp used for version check of ${serviceName} is probably messed up`); |