Remove `dbg!` to avoid spamming logs

This commit is contained in:
Felix Ableitner 2020-11-30 18:28:31 +01:00
parent 8fc4e1ecfe
commit 8d12c77e26
1 changed files with 0 additions and 2 deletions

View File

@ -333,8 +333,6 @@ impl Perform for Search {
) -> Result<SearchResponse, LemmyError> {
let data: &Search = &self;
dbg!(&data);
match search_by_apub_id(&data.q, context).await {
Ok(r) => return Ok(r),
Err(e) => debug!("Failed to resolve search query as activitypub ID: {}", e),