diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-01-03 05:25:19 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-01-03 05:25:19 +0900 |
| commit | 9621abea984d3874814b62955b8ccadd5707c6ce (patch) | |
| tree | da417e6d55d79bd9a000eed37ad35d7d32848a78 /src/utils | |
| parent | :sparkles: (diff) | |
| download | sharkey-9621abea984d3874814b62955b8ccadd5707c6ce.tar.gz sharkey-9621abea984d3874814b62955b8ccadd5707c6ce.tar.bz2 sharkey-9621abea984d3874814b62955b8ccadd5707c6ce.zip | |
Remove log
Diffstat (limited to 'src/utils')
| -rw-r--r-- | src/utils/dependencyInfo.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/utils/dependencyInfo.ts b/src/utils/dependencyInfo.ts index a004cd42c2..b934cccf98 100644 --- a/src/utils/dependencyInfo.ts +++ b/src/utils/dependencyInfo.ts @@ -9,13 +9,11 @@ export default class { } showAll(): void { - this.logger.info('Checking started'); this.show('Node.js', 'node -v', x => x.match(/^v(.*)\r?\n$/)); this.show('npm', 'npm -v', x => x.match(/^(.*)\r?\n$/)); this.show('MongoDB', 'mongo --version', x => x.match(/^MongoDB shell version: (.*)\r?\n$/)); this.show('Redis', 'redis-server --version', x => x.match(/v=([0-9\.]*)/)); this.show('GraphicsMagick', 'gm -version', x => x.match(/^GraphicsMagick ([0-9\.]*) .*/)); - this.logger.info('Checking finished'); } show(serviceName: string, command: string, transform: (x: string) => RegExpMatchArray): void { |