Skip to content

Commit

Permalink
udiskslinuxdevice: Lower the severity of ATA IDENTIFY command errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tbzatek committed Jan 18, 2024
1 parent 532e0dc commit 5dbd5a3
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 5dbd5a3

Please sign in to comment.