File size: 428 Bytes
6ce4ca6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * Debug configuration for feetech.js
 * Set DEBUG_ENABLED to false to disable all console.log statements for performance
 */
export const DEBUG_ENABLED = true; // Set to true to enable debug logging

/**
 * Conditional logging function that respects the DEBUG_ENABLED flag
 * @param {...any} args - Arguments to log
 */
export const debugLog = (...args) => {
    if (DEBUG_ENABLED) {
        console.log(...args);
    }
};