Remove debug messages

This commit is contained in:
Salmonllama 2020-09-08 20:14:37 -04:00
parent ee3fe8aecc
commit 72f6d75cda

View File

@ -50,11 +50,9 @@ public class ImageListener implements MessageCreateListener {
if (System.getenv("ENVIRONMENT") != null) {
// Upload the image(s) to Imgur, store in database, log the stored images.
System.out.println("PROD environment, uploading");
uploadAndStore(event, channel, image);
} else {
// Store the image(s) in database, log the stored images.
System.out.println("DEV environment, not uploading");
store(event, channel, image);
}
});