From f0b21330a03b6a0dcdab21b57026f61e006da052 Mon Sep 17 00:00:00 2001
From: Daniel Scalzi <d_scalzi@yahoo.com>
Date: Thu, 10 May 2018 00:22:00 -0400
Subject: [PATCH] v0.0.1-alpha.2 Fixed console.debug error.

---
 app/assets/js/assetguard.js | 2 +-
 package-lock.json           | 2 +-
 package.json                | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app/assets/js/assetguard.js b/app/assets/js/assetguard.js
index aca6e980..4238c4c1 100644
--- a/app/assets/js/assetguard.js
+++ b/app/assets/js/assetguard.js
@@ -1562,7 +1562,7 @@ class AssetGuard extends EventEmitter {
         if(concurrentDlQueue.length === 0){
             return false
         } else {
-            console.debug('DLQueue', concurrentDlQueue)
+            console.log('DLQueue', concurrentDlQueue)
             async.eachLimit(concurrentDlQueue, limit, (asset, cb) => {
                 let count = 0;
                 mkpath.sync(path.join(asset.to, ".."))
diff --git a/package-lock.json b/package-lock.json
index 1b603934..4473733a 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
 {
   "name": "westeroscraftlauncher",
-  "version": "0.0.1-alpha.1",
+  "version": "0.0.1-alpha.2",
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {
diff --git a/package.json b/package.json
index 1d6e4f05..18956fcd 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "westeroscraftlauncher",
-  "version": "0.0.1-alpha.1",
+  "version": "0.0.1-alpha.2",
   "description": "Custom modded launcher for Westeroscraft",
   "productName": "WesterosCraft Launcher",
   "main": "index.js",