user permissions
This commit is contained in:
@@ -151,4 +151,67 @@ impl AuthMetrics for MetricsDebugLogger {
|
||||
async fn record_auth_session_fetch_failure(&self) {
|
||||
tracing::debug!("[Metrics] Auth session fetch failed");
|
||||
}
|
||||
|
||||
async fn record_auth_fetch_user_warren_list_success(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren list succeeded");
|
||||
}
|
||||
async fn record_auth_fetch_user_warren_list_failure(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren list failed");
|
||||
}
|
||||
|
||||
async fn record_auth_fetch_user_warrens_success(&self) -> () {
|
||||
tracing::debug!("[Metrics] Auth user warren id fetch succeeded");
|
||||
}
|
||||
async fn record_auth_fetch_user_warrens_failure(&self) -> () {
|
||||
tracing::debug!("[Metrics] Auth user warren id fetch failed");
|
||||
}
|
||||
|
||||
async fn record_auth_warren_fetch_success(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren fetch succeeded");
|
||||
}
|
||||
async fn record_auth_warren_fetch_failure(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren fetch failed");
|
||||
}
|
||||
|
||||
async fn record_auth_warren_file_list_success(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren file list succeeded");
|
||||
}
|
||||
async fn record_auth_warren_file_list_failure(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren file list failed");
|
||||
}
|
||||
|
||||
async fn record_auth_warren_directory_creation_success(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren directory creation succeeded");
|
||||
}
|
||||
async fn record_auth_warren_directory_creation_failure(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren directory creation failed");
|
||||
}
|
||||
|
||||
async fn record_auth_warren_directory_deletion_success(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren directory deletion succeeded");
|
||||
}
|
||||
async fn record_auth_warren_directory_deletion_failure(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren directory deletion failed");
|
||||
}
|
||||
|
||||
async fn record_auth_warren_file_deletion_success(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren file deletion succeeded");
|
||||
}
|
||||
async fn record_auth_warren_file_deletion_failure(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren file deletion failed");
|
||||
}
|
||||
|
||||
async fn record_auth_warren_entry_rename_success(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren entry rename succeeded");
|
||||
}
|
||||
async fn record_auth_warren_entry_rename_failure(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren entry rename failed");
|
||||
}
|
||||
|
||||
async fn record_auth_warren_files_upload_success(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren files upload succeeded");
|
||||
}
|
||||
async fn record_auth_warren_files_upload_failure(&self) {
|
||||
tracing::debug!("[Metrics] Auth warren files upload failed");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user