diff options
| author | Simon Ser <contact@emersion.fr> | 2021-04-12 09:47:16 +0200 |
|---|---|---|
| committer | Kenny Levinsen <kl@kl.wtf> | 2021-06-24 18:10:01 +0200 |
| commit | 9bdb0ead6e7d6352ec76b1a38ed891111cd518c9 (patch) | |
| tree | cf307a8c26ba08492a83ab00172b8b4d67a4b25e | |
| parent | 62e3ca671da063ec470101b2960d705c897ca8d9 (diff) | |
Log wlroots version on startup
Can be useful to make sure a bugfix is included. In the future maybe
the wlroots version string could include a commit hash when built
from source, too.
(cherry picked from commit 78fc9d0d2d4fae0565b115f5ee4b0296b4e993f2)
| -rw-r--r-- | sway/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/main.c b/sway/main.c index 84f8eb6e..cd949e1e 100644 --- a/sway/main.c +++ b/sway/main.c @@ -12,6 +12,7 @@ #include <sys/un.h> #include <unistd.h> #include <wlr/util/log.h> +#include <wlr/version.h> #include "sway/commands.h" #include "sway/config.h" #include "sway/server.h" @@ -344,6 +345,7 @@ int main(int argc, char **argv) { } sway_log(SWAY_INFO, "Sway version " SWAY_VERSION); + sway_log(SWAY_INFO, "wlroots version " WLR_VERSION_STR); log_kernel(); log_distro(); log_env(); |
