Rocky_Mountain_Vending/.pnpm-store/v10/files/8c/4ed158aaca8b5bb9bc09af190ac77daf12bcd5354bc8d1fb9973fe12dca548e347bae13e73c1a596a240d91c2d720e126f4106a74beeb3dd6b6a0bf8a851e7
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

56 lines
No EOL
2.6 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
const _consoleasyncstorageexternal = require("../app-render/console-async-storage.external");
const _filelogger = require("../dev/browser-logs/file-logger");
const _console = require("../../client/lib/console");
// Based on https://github.com/facebook/react/blob/28dc0776be2e1370fe217549d32aee2519f0cf05/packages/react-server/src/ReactFlightServer.js#L248
function patchConsoleMethodDEV(methodName) {
const descriptor = Object.getOwnPropertyDescriptor(console, methodName);
if (descriptor && (descriptor.configurable || descriptor.writable) && typeof descriptor.value === 'function') {
const originalMethod = descriptor.value;
const originalName = Object.getOwnPropertyDescriptor(originalMethod, 'name');
const wrapperMethod = function(...args) {
const consoleStore = _consoleasyncstorageexternal.consoleAsyncStorage.getStore();
if ((consoleStore == null ? void 0 : consoleStore.dim) === true) {
// In this context the log args are already dimmed. We use the console store
// to decide if this log is ignorable for reporting in our file logger.
return originalMethod.apply(this, args);
} else {
const ret = originalMethod.apply(this, args);
const fileLogger = (0, _filelogger.getFileLogger)();
const message = (0, _console.formatConsoleArgs)(args);
// Strip ANSI escape codes for file logging
// eslint-disable-next-line no-control-regex
const ansiEscapeRegex = new RegExp('\u001b\\[[0-9;]*m', 'g');
const cleanMessage = message.replace(ansiEscapeRegex, '');
fileLogger.logServer(methodName.toUpperCase(), cleanMessage);
return ret;
}
};
if (originalName) {
Object.defineProperty(wrapperMethod, 'name', originalName);
}
Object.defineProperty(console, methodName, {
value: wrapperMethod
});
}
}
if (process.env.NODE_ENV === 'development') {
patchConsoleMethodDEV('error');
patchConsoleMethodDEV('assert');
patchConsoleMethodDEV('debug');
patchConsoleMethodDEV('dir');
patchConsoleMethodDEV('dirxml');
patchConsoleMethodDEV('group');
patchConsoleMethodDEV('groupCollapsed');
patchConsoleMethodDEV('groupEnd');
patchConsoleMethodDEV('info');
patchConsoleMethodDEV('log');
patchConsoleMethodDEV('table');
patchConsoleMethodDEV('trace');
patchConsoleMethodDEV('warn');
}
//# sourceMappingURL=console-file.js.map