diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-09-29 07:43:50 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-09-29 07:43:50 -0400 |
commit | fe3b85d65ff84133cfbe43c11a5462beddbefaff (patch) | |
tree | 46356ae7b43ce6a2ea133771784a072294918f78 /sway/log.c | |
parent | d7f8bbd35323e9d83b10ab9fbd8715ec4f1aaa8c (diff) | |
parent | 494499617090eccf73a0c75380ca884e77548a9f (diff) |
Merge pull request #181 from taiyu-len/master
multi command keybinds
Diffstat (limited to 'sway/log.c')
-rw-r--r-- | sway/log.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -14,10 +14,10 @@ int colored = 1; log_importance_t v = L_SILENT; static const char *verbosity_colors[] = { - "", // L_SILENT - "\x1B[1;31m", // L_ERROR - "\x1B[1;34m", // L_INFO - "\x1B[1;30m", // L_DEBUG + [L_SILENT] = "", + [L_ERROR ] = "\x1B[1;31m", + [L_INFO ] = "\x1B[1;34m", + [L_DEBUG ] = "\x1B[1;30m", }; void init_log(log_importance_t verbosity) { |