mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-30 13:16:14 -06:00
use debug instead of warn level
This commit is contained in:
parent
275b15a804
commit
1effacd10f
5 changed files with 7 additions and 7 deletions
|
|
@ -89,7 +89,7 @@ func (f *federatingDB) Accept(ctx context.Context, accept vocab.ActivityStreamsA
|
|||
|
||||
// UNHANDLED
|
||||
default:
|
||||
log.Warnf(ctx, "unhandled object type: %s", name)
|
||||
log.Debugf(ctx, "unhandled object type: %s", name)
|
||||
}
|
||||
|
||||
} else if object.IsIRI() {
|
||||
|
|
@ -134,7 +134,7 @@ func (f *federatingDB) Accept(ctx context.Context, accept vocab.ActivityStreamsA
|
|||
|
||||
// UNHANDLED
|
||||
default:
|
||||
log.Warnf(ctx, "unhandled iri type: %s", objIRI)
|
||||
log.Debugf(ctx, "unhandled iri type: %s", objIRI)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@ func (f *federatingDB) Create(ctx context.Context, asType vocab.Type) error {
|
|||
// FLAG / REPORT SOMETHING
|
||||
return f.activityFlag(ctx, asType, receivingAcct, requestingAcct)
|
||||
default:
|
||||
log.Warnf(ctx, "unhandled object type: %s", name)
|
||||
log.Debugf(ctx, "unhandled object type: %s", name)
|
||||
}
|
||||
|
||||
return nil
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ func (f *federatingDB) Delete(ctx context.Context, id *url.URL) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
log.Warnf(ctx, "unknown iri: %s", uriStr)
|
||||
log.Debugf(ctx, "unknown iri: %s", uriStr)
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ func (f *federatingDB) Reject(ctx context.Context, reject vocab.ActivityStreamsR
|
|||
|
||||
// UNHANDLED
|
||||
default:
|
||||
log.Warnf(ctx, "unhandled object type: %s", name)
|
||||
log.Debugf(ctx, "unhandled object type: %s", name)
|
||||
}
|
||||
|
||||
} else if object.IsIRI() {
|
||||
|
|
@ -114,7 +114,7 @@ func (f *federatingDB) Reject(ctx context.Context, reject vocab.ActivityStreamsR
|
|||
|
||||
// UNHANDLED
|
||||
default:
|
||||
log.Warnf(ctx, "unhandled iri type: %s", objIRI)
|
||||
log.Debugf(ctx, "unhandled iri type: %s", objIRI)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ func (f *federatingDB) Update(ctx context.Context, asType vocab.Type) error {
|
|||
return f.updateStatusable(ctx, receivingAcct, requestingAcct, statusable)
|
||||
}
|
||||
|
||||
log.Warnf(ctx, "unhandled object type: %T", asType)
|
||||
log.Debugf(ctx, "unhandled object type: %T", asType)
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue