summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2016-12-29 17:50:57 +0900
committerAya Morisawa <AyaMorisawa4869@gmail.com>2016-12-29 17:50:57 +0900
commitdc21a819d65c3c80215a1593d1cc238df6187b4e (patch)
treea1718261cdee6bd7ef9025e37cef7781a074a2ac /src/utils
parent:rocket: (diff)
downloadsharkey-dc21a819d65c3c80215a1593d1cc238df6187b4e.tar.gz
sharkey-dc21a819d65c3c80215a1593d1cc238df6187b4e.tar.bz2
sharkey-dc21a819d65c3c80215a1593d1cc238df6187b4e.zip
Use logger
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/check-dependencies.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/utils/check-dependencies.ts b/src/utils/check-dependencies.ts
index 94b3bd3518..6265e9aad7 100644
--- a/src/utils/check-dependencies.ts
+++ b/src/utils/check-dependencies.ts
@@ -6,7 +6,6 @@ export default function(): void {
checkDependency('npm', 'npm -v', x => x.match(/^(.*)\r?\n$/)[1]);
checkDependency('MongoDB', 'mongo --version', x => x.match(/^MongoDB shell version: (.*)\r?\n$/)[1]);
checkDependency('Redis', 'redis-server --version', x => x.match(/v=([0-9\.]*)/)[1]);
- log('Info', 'Successfully checked external dependencies');
}
function checkDependency(serviceName: string, command: string, transform: (x: string) => string): void {