Skip to content

Commit

Permalink
less garbage to logs
Browse files Browse the repository at this point in the history
  • Loading branch information
gabboman committed Jan 21, 2025
1 parent 8679e2b commit b1a9315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/atproto/workers/processFirehoseWorker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function processFirehose(job: Job) {
const remoteUser = await getAtprotoUser(job.data.repo, (await adminUser) as Model<any, any>)
const operation: RepoOp = job.data.operation
if (remoteUser && operation) {
logger.debug({ action: operation.action, type: operation.record['$type'] })
logger.trace({ action: operation.action, type: operation.record['$type'] })
switch (operation.action) {
case 'create': {
const record = operation.record
Expand Down

0 comments on commit b1a9315

Please sign in to comment.