jeffi 10 months ago
parent 4ff7657bd8
commit bb169bf7c5
  1. 4
      src/Bastion/Bastion.lua

@ -135,7 +135,7 @@ function Bastion:Require(filePath, ...)
end
return 1, loadResults
end
Log(string.format("Bastion:Require - No files found in directory: %s", loadedFile.newPath))
--Log(string.format("Bastion:Require - No files found in directory: %s", loadedFile.newPath))
return 0, SafePack(nil)
end
@ -144,7 +144,7 @@ function Bastion:Require(filePath, ...)
loadedFile.loadedPath, found = CheckFileExtensions(loadedFile.newPath, { "lua", "luac" })
if not found then
Log(string.format("Bastion:Require - Not Found: %s (%s)", loadedFile.newPath, loadedFile.originalPath))
--Log(string.format("Bastion:Require - Not Found: %s (%s)", loadedFile.newPath, loadedFile.originalPath))
return 0, SafePack(nil)
end

Loading…
Cancel
Save