mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-06 23:48:54 -05:00
* fix: Disable Segment Tools and Reset Preview State During Playback * chore: remove some unnecessary comments * chore: build assets * fix: do not display the handles (left/right) on preview mode * fix: Disable all tools on preview mode (undo, redo, reset, etc.) * Update README.md * feat: Prettier configuration for video editor * Update README.md * Update .prettierrc * style: Format entire codebase (video-editor) with Prettier * fix: During segments playback mode, disable button interactions but keep hover working * feat: Add yarn format * prettier format * Update package.json * feat: Install prettier and improve formatting * build assets * Update version.py 6.2.0
32 lines
669 B
TypeScript
32 lines
669 B
TypeScript
/**
|
|
* A consistent logger utility that only outputs debug messages in development
|
|
* but always shows errors, warnings, and info messages.
|
|
*/
|
|
const logger = {
|
|
/**
|
|
* Logs debug messages only in development environment
|
|
*/
|
|
debug: (...args: any[]) => {
|
|
if (process.env.NODE_ENV === "development") {
|
|
console.debug(...args);
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Always logs error messages
|
|
*/
|
|
error: (...args: any[]) => console.error(...args),
|
|
|
|
/**
|
|
* Always logs warning messages
|
|
*/
|
|
warn: (...args: any[]) => console.warn(...args),
|
|
|
|
/**
|
|
* Always logs info messages
|
|
*/
|
|
info: (...args: any[]) => console.info(...args)
|
|
};
|
|
|
|
export default logger;
|