Remove unnecessary log

pull/4126/head
Chocobozzz 2021-06-11 16:44:33 +02:00
parent 31d5d916c3
commit 520bf885c5
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 0 additions and 3 deletions

View File

@ -1,5 +1,4 @@
import { QueryTypes, Sequelize, Transaction } from 'sequelize'
import { logger } from '@server/helpers/logger'
/**
*
@ -14,8 +13,6 @@ export class AbstractVideosQueryBuilder {
protected replacements: any = {}
protected runQuery (options: { transaction?: Transaction, logging?: boolean } = {}) {
logger.debug('Running videos query.', { query: this.query, replacements: this.replacements })
const queryOptions = {
transaction: options.transaction,
logging: options.logging,