chore: delete log

This commit is contained in:
nathan 2022-12-20 14:45:51 +08:00
parent 4643851b3f
commit ce86227da3

View File

@ -261,10 +261,7 @@ impl UserSession {
fn get_session(&self) -> Result<Session, FlowyError> {
match KV::get_str(&self.config.session_cache_key) {
None => Err(FlowyError::unauthorized()),
Some(s) => {
tracing::debug!("Get user session: {:?}", s);
Ok(Session::from(s))
}
Some(s) => Ok(Session::from(s)),
}
}