Resolve getters during logging
Automatically expanded objects (logged with the special comment //?+
) now resolve property getters. So in case of const a = { get b() { return 1; } }; //?+
the output will be { b: 1 }
. If you want to always resolve property getters regardless whether the logged object is automatically expanded or not, you may use the new resolveGetters
configuration setting.