plugin: Remove Logging alias and update imports

This commit is contained in:
Lucien Greathouse
2019-10-02 11:10:34 -07:00
parent 3554112f31
commit b562d11994
7 changed files with 23 additions and 26 deletions

View File

@@ -1,6 +1,7 @@
local ContentProvider = game:GetService("ContentProvider")
local Logging = require(script.Parent.Logging)
local Log = require(script.Parent.Parent.Log)
local Assets = require(script.Parent.Assets)
local function preloadAssets()
@@ -18,7 +19,7 @@ local function preloadAssets()
table.insert(contentUrls, url)
end
Logging.trace("Preloading assets: %s", table.concat(contentUrls, ", "))
Log.trace("Preloading assets: %s", table.concat(contentUrls, ", "))
coroutine.wrap(function()
ContentProvider:PreloadAsync(contentUrls)