mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 15:30:14 +00:00
Cleanup VOffline log message
Make the 'Volume X (Y) is now offline' messages appear more sanely in the log; logging as one line at once. Change-Id: I8a3cf986fb30e292e509237357bd1039f2f181b9 Reviewed-on: http://gerrit.openafs.org/782 Tested-by: Andrew Deason <adeason@sinenomine.net> Tested-by: Derrick Brashear <shadow@dementia.org> Reviewed-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
parent
95770bf95a
commit
fd592c7674
@ -3712,11 +3712,14 @@ VCheckOffline(register Volume * vp)
|
||||
VCloseVolumeHandles_r(vp);
|
||||
|
||||
if (LogLevel) {
|
||||
Log("VOffline: Volume %u (%s) is now offline", V_id(vp),
|
||||
V_name(vp));
|
||||
if (V_offlineMessage(vp)[0])
|
||||
Log(" (%s)", V_offlineMessage(vp));
|
||||
Log("\n");
|
||||
if (V_offlineMessage(vp)[0]) {
|
||||
Log("VOffline: Volume %lu (%s) is now offline (%s)\n",
|
||||
afs_printable_uint32_lu(V_id(vp)), V_name(vp),
|
||||
V_offlineMessage(vp));
|
||||
} else {
|
||||
Log("VOffline: Volume %lu (%s) is now offline\n",
|
||||
afs_printable_uint32_lu(V_id(vp)), V_name(vp));
|
||||
}
|
||||
}
|
||||
|
||||
/* invalidate the volume header cache entry */
|
||||
|
Loading…
Reference in New Issue
Block a user