Log that as debug rather than info.

This commit is contained in:
Rasmus Kaj 2022-02-20 16:13:55 +01:00
parent 255569201b
commit 95d80104ec

View File

@ -5,7 +5,7 @@ use crate::models::{Coord, Photo};
use crate::schema::photos;
use diesel::pg::{Pg, PgConnection};
use diesel::prelude::*;
use log::{debug, info};
use log::debug;
pub fn links_by_time(
context: &Context,
@ -132,7 +132,7 @@ fn split(group: &[Photo]) -> (&[Photo], &[Photo]) {
pos = i + 1;
}
}
info!("Splitting a group len {} at {}", l, pos);
debug!("Splitting a group len {} at {}", l, pos);
group.split_at(pos)
}