Skip to content

Commit

Permalink
fix: delete console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
pYassine committed Sep 14, 2023
1 parent d3de947 commit 95edb03
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,21 +126,6 @@ async function createTables(queryRunner: QueryRunner) {
CONSTRAINT "PK_6bffd9b803b67cd4e099fc795e1" PRIMARY KEY (uuid)
);
-- public.migrations definition
-- Drop table
-- DROP TABLE public.migrations;
CREATE UNLOGGED TABLE public.migrations (
id serial4 NOT NULL,
"timestamp" int8 NOT NULL,
"name" varchar NOT NULL,
CONSTRAINT "PK_8c82d7f526340ab734260ea46be" PRIMARY KEY (id)
);
-- public.monitor_batch_process definition
-- Drop table
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export const domifaConfigFileLoader = {

function loadEnvFile(envFileName: string): Partial<DomifaEnv> {
const envFilePath = join(__dirname, "../../", envFileName);
console.log(envFilePath);
// On laisse l'usage sync, car ce fichir n'est loadé qu'une fois
if (!existsSync(envFilePath)) {
// eslint:disable-next-line: no-console
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,3 @@ export const PG_CONNECT_OPTIONS: PostgresConnectionOptions = {
...connectOptionsPaths,
maxQueryExecutionTime: 1000,
};
console.log(PG_CONNECT_OPTIONS);

0 comments on commit 95edb03

Please sign in to comment.