diff options
author | uurgothat <cckhmck@gmail.com> | 2021-10-04 22:01:08 +0300 |
---|---|---|
committer | uurgothat <cckhmck@gmail.com> | 2021-10-04 22:01:08 +0300 |
commit | 18abf9ef40404a5693cf62d3f8b026f491765264 (patch) | |
tree | ffba9b64dd2d9f62940e3c994e8f97f841746ebe /cdn | |
parent | Merge branch 'master' of https://github.com/fosscord/fosscord-server (diff) | |
download | server-18abf9ef40404a5693cf62d3f8b026f491765264.tar.xz |
Rainbow the logs
Diffstat (limited to 'cdn')
-rw-r--r-- | cdn/src/util/Storage.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cdn/src/util/Storage.ts b/cdn/src/util/Storage.ts index 5cf1eb80..8ae44bbb 100644 --- a/cdn/src/util/Storage.ts +++ b/cdn/src/util/Storage.ts @@ -1,6 +1,7 @@ import { FileStorage } from "./FileStorage"; import path from "path"; import fse from "fs-extra"; +import { bgCyan, black } from "chalk"; process.cwd(); export interface Storage { @@ -18,7 +19,7 @@ if (process.env.STORAGE_PROVIDER === "file" || !process.env.STORAGE_PROVIDER) { } else { location = path.join(process.cwd(), "files"); } - console.log(`[CDN] storage location: ${location}`); + console.log(`[CDN] storage location: ${bgCyan(`${black(location)}`)}`); fse.ensureDirSync(location); process.env.STORAGE_LOCATION = location; |