mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-20 03:35:41 +02:00
modules: remove "connected to " prefix from info logs
This commit is contained in:
parent
43aeb1c224
commit
45e5f11fea
2 changed files with 2 additions and 2 deletions
|
@ -198,7 +198,7 @@ handle_get_version_reply(struct private *m, const struct json_object *json)
|
|||
return false;
|
||||
}
|
||||
|
||||
LOG_INFO("connected to i3: %s", json_object_get_string(version));
|
||||
LOG_INFO("i3: %s", json_object_get_string(version));
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -186,7 +186,7 @@ connect_to_mpd(const struct module *mod)
|
|||
}
|
||||
|
||||
const unsigned *version = mpd_connection_get_server_version(conn);
|
||||
LOG_INFO("connected to MPD %u.%u.%u", version[0], version[1], version[2]);
|
||||
LOG_INFO("MPD %u.%u.%u", version[0], version[1], version[2]);
|
||||
|
||||
return conn;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue