Skip to content

Commit

Permalink
udiskslinuxdevice: Lower severity of ATA IDENTIFY command errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tbzatek committed Sep 5, 2023
1 parent 6896962 commit 164bd49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/udiskslinuxdevice.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ udisks_linux_device_new_sync (GUdevDevice *udev_device)
out:
if (error != NULL)
{
udisks_critical ("Error probing device: %s (%s, %d)",
error->message, g_quark_to_string (error->domain), error->code);
udisks_warning ("Error probing device: %s (%s, %d)",
error->message, g_quark_to_string (error->domain), error->code);
g_clear_error (&error);
}

Expand Down

0 comments on commit 164bd49

Please sign in to comment.