summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-09-01 00:32:32 +0200
committerLennart Poettering <lennart@poettering.net>2010-09-01 00:32:32 +0200
commitfe71c02cf5aefad46e6662b2bbdf744975b43991 (patch)
tree94d82530dd268881cd6ad1fc5dcf62cee12721fd
parenteed1d0e33d0a46fb562820518031e3f861f9dcdc (diff)
downloadsystemd-fe71c02cf5aefad46e6662b2bbdf744975b43991.tar.gz
manager: reword some error messages regarding "logs"
https://bugzilla.redhat.com/show_bug.cgi?id=627785
-rw-r--r--src/manager.c4
-rw-r--r--src/systemctl.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/manager.c b/src/manager.c
index bc589bacc7..517473b802 100644
--- a/src/manager.c
+++ b/src/manager.c
@@ -989,7 +989,7 @@ static int transaction_verify_order_one(Manager *m, Job *j, Job *from, unsigned
log_error("Unable to break cycle");
- dbus_set_error(e, BUS_ERROR_TRANSACTION_ORDER_IS_CYCLIC, "Transaction order is cyclic. See logs for details.");
+ dbus_set_error(e, BUS_ERROR_TRANSACTION_ORDER_IS_CYCLIC, "Transaction order is cyclic. See system logs for details.");
return -ENOEXEC;
}
@@ -1403,7 +1403,7 @@ static int transaction_add_job_and_dependencies(
}
if (type != JOB_STOP && unit->meta.load_state == UNIT_ERROR) {
- dbus_set_error(e, BUS_ERROR_LOAD_FAILED, "Unit %s failed to load: %s. You might find more information in the logs.",
+ dbus_set_error(e, BUS_ERROR_LOAD_FAILED, "Unit %s failed to load: %s. You might find more information in the system logs.",
unit->meta.id,
strerror(-unit->meta.load_error));
return -EINVAL;
diff --git a/src/systemctl.c b/src/systemctl.c
index a85257ff6e..41aea093cd 100644
--- a/src/systemctl.c
+++ b/src/systemctl.c
@@ -1081,7 +1081,7 @@ static int wait_for_jobs(DBusConnection *bus, Set *s) {
;
if (!arg_quiet && d.failed)
- log_error("Job failed, see logs for details.");
+ log_error("Job failed, see system logs for details.");
r = d.failed ? -EIO : 0;