js: remove existing unknown property debug

Because it will be displayed only if the property is non-native.
So if your property is set in pureJS, you will still have the log...
This commit is contained in:
Pierre Tachoire
2025-07-07 14:29:48 -07:00
parent bdfceec520
commit 13c623755c
2 changed files with 1 additions and 31 deletions

View File

@@ -45,7 +45,7 @@ pub const Scope = enum {
const Opts = struct {
format: Format = if (is_debug) .pretty else .logfmt,
level: Level = if (is_debug) .info else .warn,
filter_scopes: []const Scope = &.{.unknown_prop},
filter_scopes: []const Scope = &.{},
};
pub var opts = Opts{};