Skip to content

Commit

Permalink
Change warning to info since its not an error
Browse files Browse the repository at this point in the history
  • Loading branch information
RH-steve-grubb committed Oct 29, 2022
1 parent f684654 commit b3bfae0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/library/backend-manager.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* backend-manager.c - backend management
* Copyright (c) 2020 Red Hat Inc., Durham, North Carolina.
* Copyright (c) 2020,2022 Red Hat Inc.
* All Rights Reserved.
*
* This software may be freely redistributed and/or modified under the
Expand Down Expand Up @@ -59,7 +59,7 @@ static int backend_push(const char *name)
}

if (index == -1) {
msg(LOG_ERR, "%s backend not supported, skipping!", name);
msg(LOG_INFO, "%s backend not supported, skipping!", name);
return 0;
} else {
backend_entry *tmp = (backend_entry *)
Expand Down

0 comments on commit b3bfae0

Please sign in to comment.