aboutsummaryrefslogtreecommitdiff
path: root/src/server/index.ts
diff options
context:
space:
mode:
authorSam Wilkins <samwilkins333@gmail.com>2020-03-18 17:48:02 -0700
committerSam Wilkins <samwilkins333@gmail.com>2020-03-18 17:48:02 -0700
commitb0e121a9d767ca30e5b6732e3aeabbda0e0a7e97 (patch)
tree7e82f40979bc80e2ea67d8a190d2f39c6e65bd55 /src/server/index.ts
parent556da19d82b651b7a3372c5937f03ad55803ce1b (diff)
finalized cleanup
Diffstat (limited to 'src/server/index.ts')
-rw-r--r--src/server/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/index.ts b/src/server/index.ts
index 10205314a..f4446352f 100644
--- a/src/server/index.ts
+++ b/src/server/index.ts
@@ -25,6 +25,7 @@ import { yellow } from "colors";
import { DashSessionAgent } from "./DashSession/DashSessionAgent";
import SessionManager from "./ApiManagers/SessionManager";
import { AppliedSessionAgent } from "./DashSession/Session/agents/applied_session_agent";
+import { Utils } from "../Utils";
export const onWindows = process.platform === "win32";
export let sessionAgent: AppliedSessionAgent;
@@ -37,6 +38,7 @@ export const filesDirectory = path.resolve(publicDirectory, "files");
* before clients can access the server should be run or awaited here.
*/
async function preliminaryFunctions() {
+ // Utils.TraceConsoleLog();
await Logger.initialize();
await GoogleCredentialsLoader.loadCredentials();
GoogleApiServerUtils.processProjectCredentials();