Skip to content

Commit ce86227

Browse files
committed
chore: delete log
1 parent 4643851 commit ce86227

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

frontend/rust-lib/flowy-user/src/services/user_session.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -261,10 +261,7 @@ impl UserSession {
261261
fn get_session(&self) -> Result<Session, FlowyError> {
262262
match KV::get_str(&self.config.session_cache_key) {
263263
None => Err(FlowyError::unauthorized()),
264-
Some(s) => {
265-
tracing::debug!("Get user session: {:?}", s);
266-
Ok(Session::from(s))
267-
}
264+
Some(s) => Ok(Session::from(s)),
268265
}
269266
}
270267

0 commit comments

Comments
 (0)