diff --git a/commands/images/meme.js b/commands/images/meme.js
index 3e5503b..d85dadd 100644
--- a/commands/images/meme.js
+++ b/commands/images/meme.js
@@ -78,6 +78,7 @@ class memeCommand extends Command {
 			
 					img.format(function(err, format) {
 						if (err) {
+							console.error(err);
 							return message.channel.send('An error has occured, is it an image?');
 						}
 						let output = `${os.tmpdir()}/meme${message.id}.${format.toLocaleLowerCase()}`;
diff --git a/commands/images/poster.js b/commands/images/poster.js
index 2592873..5964cf9 100644
--- a/commands/images/poster.js
+++ b/commands/images/poster.js
@@ -94,6 +94,7 @@ class posterCommand extends Command {
 
 					img.format(function(err, format) {
 						if (err) {
+							console.error(err);
 							return message.channel.send('An error has occured, is it an image?');
 						}
 						let output = `${os.tmpdir()}/poster${message.id}.${format.toLocaleLowerCase()}`;