From d12a786160a646dee49503e5423e0e54edf52d52 Mon Sep 17 00:00:00 2001
From: Luminarys <kizunanohikari@gmail.com>
Date: Thu, 13 Aug 2015 12:53:13 -0500
Subject: [PATCH] Removed some unnecessary logs

---
 sway/config.c   | 2 --
 sway/handlers.c | 1 -
 2 files changed, 3 deletions(-)

diff --git a/sway/config.c b/sway/config.c
index e8ff42dc..2f1ad845 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -72,7 +72,6 @@ struct sway_config *read_config(FILE *file, bool is_active) {
 		// Any command which would require wlc to be initialized
 		// should be queue for later execution
 		list_t *args = split_string(line, " ");
-		sway_log(L_DEBUG, "Checking command %s", line);
 		if (strcmp("workspace", args->items[0]) == 0) {
 			sway_log(L_DEBUG, "Deferring command %s", line);
 			char *cmd = malloc(strlen(line) + 1);
@@ -92,7 +91,6 @@ _continue:
 	}
 
 	if (success == false) {
-		sway_log(L_DEBUG, "Config load failed, exiting");
 		exit(1);
 	}
 
diff --git a/sway/handlers.c b/sway/handlers.c
index 220aeb01..fd9c61a0 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -167,7 +167,6 @@ static void handle_wlc_ready(void) {
 	sway_log(L_DEBUG, "Compositor is ready, executing cmds in queue");
 	int i;
 	for (i = 0; i < config->cmd_queue->length; ++i) {
-		sway_log(L_DEBUG, "Handling command %s", config->cmd_queue->items[i]);
 		handle_command(config, config->cmd_queue->items[i]);
 	}
 	list_free(config->cmd_queue);