diff options
author | trasz <trasz@FreeBSD.org> | 2014-03-25 11:46:46 +0000 |
---|---|---|
committer | trasz <trasz@FreeBSD.org> | 2014-03-25 11:46:46 +0000 |
commit | b76cdca91ab4f9c572da65df6e9d178f69eca4dc (patch) | |
tree | ba933ed4dea757ed14f9028d9e9ca0cfb388854c | |
parent | 68324fc037c605b09145d34d4da2240f3ebe1025 (diff) | |
download | FreeBSD-src-b76cdca91ab4f9c572da65df6e9d178f69eca4dc.zip FreeBSD-src-b76cdca91ab4f9c572da65df6e9d178f69eca4dc.tar.gz |
MFC r261768:
Make the debug messages during ctld(8) shutdown less confusing.
Sponsored by: The FreeBSD Foundation
-rw-r--r-- | usr.sbin/ctld/ctld.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ctld/ctld.c b/usr.sbin/ctld/ctld.c index a5472ab..ce9408a 100644 --- a/usr.sbin/ctld/ctld.c +++ b/usr.sbin/ctld/ctld.c @@ -1057,8 +1057,8 @@ conf_apply(struct conf *oldconf, struct conf *newconf) if (newtarg == NULL) { TAILQ_FOREACH_SAFE(oldlun, &oldtarg->t_luns, l_next, tmplun) { - log_debugx("target %s not found in the " - "configuration file; removing its lun %d, " + log_debugx("target %s not found in new " + "configuration; removing its lun %d, " "backed by CTL lun %d", oldtarg->t_iqn, oldlun->l_lun, oldlun->l_ctl_lun); @@ -1084,7 +1084,7 @@ conf_apply(struct conf *oldconf, struct conf *newconf) newlun = lun_find(newtarg, oldlun->l_lun); if (newlun == NULL) { log_debugx("lun %d, target %s, CTL lun %d " - "not found in the configuration file; " + "not found in new configuration; " "removing", oldlun->l_lun, oldtarg->t_iqn, oldlun->l_ctl_lun); error = kernel_lun_remove(oldlun); |