From fe47b7c2cb8c536d56907e679af7a94de0e338c3 Mon Sep 17 00:00:00 2001
From: Bruce Hill <bitbucket@bruce-hill.com>
Date: Wed, 25 Jul 2018 13:46:42 -0700
Subject: [PATCH] Removing debug print.

---
 files.lua  | 1 -
 files.moon | 1 -
 2 files changed, 2 deletions(-)

diff --git a/files.lua b/files.lua
index 0504faf..72d9a43 100644
--- a/files.lua
+++ b/files.lua
@@ -26,7 +26,6 @@ local _FILE_CACHE = setmetatable({ }, {
 })
 local _BROWSE_CACHE = { }
 Files.spoof = function(filename, contents)
-  print("SPOOFING " .. tostring(filename))
   _SPOOFED_FILES[filename] = contents
   return contents
 end
diff --git a/files.moon b/files.moon
index 1a9c50a..04bebdb 100644
--- a/files.moon
+++ b/files.moon
@@ -17,7 +17,6 @@ _BROWSE_CACHE = {}
 
 -- Create a fake file and put it in the cache
 Files.spoof = (filename, contents)->
-    print("SPOOFING #{filename}")
     _SPOOFED_FILES[filename] = contents
     return contents