Skip to content

Commit

Permalink
Revert "adding log to debug settings"
Browse files Browse the repository at this point in the history
This reverts commit c4e797d.
  • Loading branch information
julien51 committed Apr 19, 2024
1 parent 322159c commit c5cd4bf
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion locksmith/config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Object.values(networks).forEach((network) => {

const config = {
database: {
logging: true,
logging: false,
dialect: 'postgres',
},
stripeSecret: process.env.STRIPE_SECRET,
Expand Down
2 changes: 1 addition & 1 deletion locksmith/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Object.values(networks).forEach((network) => {
const config = {
isProduction,
database: {
logging: true,
logging: false,
dialect: 'postgres',
} as Options,
stripeSecret: process.env.STRIPE_SECRET,
Expand Down
1 change: 0 additions & 1 deletion locksmith/src/models/sequelize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,4 @@ export const LocksmithDataTypes: LocksmithDataTypesType = {

PgTypes.NETWORK_ID = PgNetworkId

console.log(config.database)
export const sequelize = new Sequelize(config.database)
2 changes: 0 additions & 2 deletions locksmith/src/operations/eventOperations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ export const getEventForLock = async (
order: [['updatedAt', 'DESC']],
})

console.log('Found checkout config for ', lockAddress, checkoutConfigs)

// If there are checkout configs, let's see if an even exists with them!
// Let's now find any event that uses this checkout config!
const event = await EventData.findOne({
Expand Down

0 comments on commit c5cd4bf

Please sign in to comment.