You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> A simple environment-aware logging utility for client and server scripts.
5
+
6
+
**Use case:**
7
+
In one of my projects, we wanted to log messages only in non-production environments without commenting them out each time. This small helper does that elegantly.
8
+
9
+
```javascript
10
+
/**
11
+
* debugLogger(message, level)
12
+
* Logs only if NOT in production.
13
+
* Level can be 'info', 'warn', or 'error'
14
+
*/
15
+
var debugLogger = (function() {
16
+
var isProd = gs.getProperty('instance_name') === 'prod-instance'; // change per your instance
0 commit comments