Improve daemon deprecation message

This commit is contained in:
AsamK 2024-09-08 08:30:08 +02:00
parent bda395191b
commit 485c4fd467

View file

@ -198,7 +198,7 @@ public class DaemonCommand implements MultiLocalCommand, LocalCommand {
&& httpAddress == null && httpAddress == null
&& inheritedChannel == null) { && inheritedChannel == null) {
logger.warn( logger.warn(
"Running daemon command without explicit mode is deprecated. Use --dbus to use the dbus interface."); "Running daemon command without explicit mode is deprecated. Use 'daemon --dbus' to use the dbus interface.");
daemonHandler.runDbus(false, DbusConfig.getBusname()); daemonHandler.runDbus(false, DbusConfig.getBusname());
} }
} }