Skip to content

Commit

Permalink
Merge pull request ceph#55659 from batrick/i64503
Browse files Browse the repository at this point in the history
client: log debug message when requesting unmount

Reviewed-by: Venky Shankar <[email protected]>
  • Loading branch information
vshankar authored Mar 4, 2024
2 parents 7280a24 + bbaadac commit 6d57bb5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/client/Client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6986,11 +6986,13 @@ void Client::_unmount(bool abort)

void Client::unmount()
{
ldout(cct, 2) << __func__ << dendl;
_unmount(false);
}

void Client::abort_conn()
{
ldout(cct, 2) << __func__ << dendl;
_unmount(true);
}

Expand Down

0 comments on commit 6d57bb5

Please sign in to comment.