Skip to content

Commit

Permalink
remove logging stub
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarf committed May 22, 2024
1 parent 28beae9 commit 319d537
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions server/models/services/ModelService.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const getById = async (
*/
const getByQuery = async (
model,
{ where, attributes = [], include = [], logging, transaction }
{ where, attributes = [], include = [], transaction }
) => {
if (!model) throw new Error('Model not defined');

Expand All @@ -87,8 +87,7 @@ const getByQuery = async (
where: { ...where },
attributes,
include,
transaction,
logging
transaction
});
};

Expand Down

0 comments on commit 319d537

Please sign in to comment.