Skip to content

Commit

Permalink
nolog
Browse files Browse the repository at this point in the history
  • Loading branch information
acharneski committed Dec 2, 2024
1 parent c6a9ff6 commit 10eff60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webapp/src/components/MessageList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {resetTabState, updateTabs} from '../utils/tabHandling';
import WebSocketService from "../services/websocket";
import Prism from 'prismjs';

const VERBOSE_LOGGING = process.env.NODE_ENV === 'development';
const VERBOSE_LOGGING = false && process.env.NODE_ENV === 'development';
const CONTAINER_ID = 'message-list-' + Math.random().toString(36).substr(2, 9);

const MessageListContainer = styled.div`
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/utils/tabHandling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Controls verbosity of debug logging. When enabled, provides detailed operation tracking.
* Disable in production to reduce console noise.
*/
const VERBOSE_LOGGING = process.env.NODE_ENV === 'development';
const VERBOSE_LOGGING = false && process.env.NODE_ENV === 'development';

/**
* Error tracking by category for monitoring and debugging
Expand Down

0 comments on commit 10eff60

Please sign in to comment.