chore: cleanup log and xcconfig

This commit is contained in:
Nathan Walker
2025-08-22 20:02:50 -07:00
parent 498b33fd72
commit ac7bcfbbf6
2 changed files with 1 additions and 2 deletions

View File

@@ -116,7 +116,7 @@ function remapStack(raw: string): string {
* Allows the runtime to remap stack traces before displaying them in the in-flight error screens.
*/
(global as any).__ns_remapStack = (rawStack: string) => {
console.log('Remapping stack trace...');
// console.log('Remapping stack trace...');
return remapStack(rawStack);
};
/**