diff --git a/src/controllers/ReportController.ts b/src/controllers/ReportController.ts index 8c204e64..fbd4d7b0 100644 --- a/src/controllers/ReportController.ts +++ b/src/controllers/ReportController.ts @@ -689,7 +689,6 @@ export class ReportController extends Controller { } } } - console.log(data); return new HttpSuccess({ template: "report1", reportName: "report1", data: { data } }); } diff --git a/src/database/data-source.ts b/src/database/data-source.ts index 4138f1ce..efc31da6 100644 --- a/src/database/data-source.ts +++ b/src/database/data-source.ts @@ -22,6 +22,5 @@ export const AppDataSource = new DataSource({ : ["dist/migration/**/*{.ts,.js}"], subscribers: [], }); -// console.log(AppDataSource); // export default database; diff --git a/src/interfaces/extension.ts b/src/interfaces/extension.ts index e6c256de..6d11543c 100644 --- a/src/interfaces/extension.ts +++ b/src/interfaces/extension.ts @@ -357,7 +357,6 @@ class Extension { }); const delAsync = promisify(redisClient.del).bind(redisClient); const deleteKey = delAsync(type + id); - console.log(`Deleted ${deleteKey} keys.`); return; } } diff --git a/src/keycloak/index.ts b/src/keycloak/index.ts index ab6f765d..205c83cd 100644 --- a/src/keycloak/index.ts +++ b/src/keycloak/index.ts @@ -5,8 +5,6 @@ const KC_REALM = process.env.KC_REALM; const KC_CLIENT_ID = process.env.KC_SERVICE_ACCOUNT_CLIENT_ID; const KC_SECRET = process.env.KC_SERVICE_ACCOUNT_SECRET; -console.log(process.env.KC_URL); - let token: string | null = null; let decoded: DecodedJwt | null = null;