summaryrefslogtreecommitdiff
path: root/src/modules/logs/utils.ts
blob: cb0d7c6a9f88159931c8aa9c0899354eee9bbfdb (plain)
1
2
3
4
5
6
7
8
9
export const LOG_TYPES: Record<string, string> = {
  debug: 'debug',
  info: 'info',
  warning: 'warn',
  error: 'error',
};

export const LOGS_HEIGHT_RATIO = 0.8;
export const LOGS_SCROLL_BOTTOM_THRESHOLD = 50;