delete console

This commit is contained in:
kittapath 2024-09-03 15:00:15 +07:00
parent b469ccd25a
commit 28a457eaf9
4 changed files with 0 additions and 5 deletions

View file

@ -689,7 +689,6 @@ export class ReportController extends Controller {
}
}
}
console.log(data);
return new HttpSuccess({ template: "report1", reportName: "report1", data: { data } });
}

View file

@ -22,6 +22,5 @@ export const AppDataSource = new DataSource({
: ["dist/migration/**/*{.ts,.js}"],
subscribers: [],
});
// console.log(AppDataSource);
// export default database;

View file

@ -357,7 +357,6 @@ class Extension {
});
const delAsync = promisify(redisClient.del).bind(redisClient);
const deleteKey = delAsync(type + id);
console.log(`Deleted ${deleteKey} keys.`);
return;
}
}

View file

@ -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;