@rbxts/app-forge 0.7.2-alpha.2 → 0.7.2-alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -53,7 +53,7 @@ do
53
53
  if not self:isEnabled(tag) then
54
54
  return nil
55
55
  end
56
- self.log("DEBUG", `[{tag}][{app}] {message}`, data, debug.traceback(nil, 3))
56
+ self.log("DEBUG", `[{tag}][{app}] {message}`, data)
57
57
  end
58
58
  function Debugger:time(tag, app)
59
59
  if not RunService:IsStudio() then
@@ -29,12 +29,6 @@ local function App(props)
29
29
  logger:log("ERROR", "Attempted to register App without a name", props)
30
30
  error("App registration failed: missing app name", 2)
31
31
  end
32
- logger:log("DEBUG", "Registering App", {
33
- name = props.name,
34
- renderGroup = props.renderGroup,
35
- visible = props.visible,
36
- rules = props.rules,
37
- })
38
32
  local _name_1 = props.name
39
33
  local _arg1 = {
40
34
  constructor = constructor,
@@ -74,11 +74,6 @@ local function usePx(target, baseResolution, minScale)
74
74
  return nil
75
75
  end
76
76
  INITIALIZED = true
77
- logger:log("DEBUG", "Initializing px scaling", {
78
- target = target,
79
- baseResolution = baseResolution,
80
- minScale = minScale,
81
- })
82
77
  if baseResolution then
83
78
  BASE_RESOLUTION(baseResolution)
84
79
  end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/app-forge",
3
- "version": "0.7.2-alpha.2",
3
+ "version": "0.7.2-alpha.4",
4
4
  "description": "An App Manager for Vide",
5
5
  "main": "out/init.lua",
6
6
  "types": "out/index.d.ts",