Skip to content

Commit

Permalink
chore: replace Logger with Logging
Browse files Browse the repository at this point in the history
  • Loading branch information
wangeguo committed Jan 18, 2024
1 parent 6ea5dbf commit 51f6658
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/handlers/logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ use crate::services::logger::LoggerService;
(status = 200, description = "Playbook logs found successfully"),
(status = 404, description = "Playbook not found")
),
tag = "Logger"
tag = "Logging"
)]
pub async fn logs(Path(id): Path<Uuid>, State(ctx): State<Arc<Context>>) -> Result<impl IntoResponse> {
LoggerService::logs(ctx, id).await;
Expand Down
2 changes: 1 addition & 1 deletion src/swagger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ use crate::{handlers, requests};
),
tags(
(name = "Playbooks", description = "The Playbooks Service Handlers"),
(name = "Logger", description = "The Logger Service Handlers"),
(name = "Logging", description = "The Logging Service Handlers"),
),
)]
struct ApiDoc;
Expand Down

0 comments on commit 51f6658

Please sign in to comment.