• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Drew-Kimberly / flumer / 6206343692

16 Sep 2023 08:36AM UTC coverage: 92.0%. Remained the same
6206343692

Pull #33

github

web-flow
chore: update dependency @types/node to v14.18.61
Pull Request #33: chore: update dependency @types/node to v14.18.61

5 of 5 branches covered (100.0%)

Branch coverage included in aggregate %.

41 of 45 relevant lines covered (91.11%)

2.89 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/packages/logger/src/createLoggable.ts
1
import { ILoggable, LogChannelName, LogSeverity } from '@flumer/core';
2

3
export const createLoggable = <S extends LogSeverity>(
4✔
4
  severity: S,
5
  channel: LogChannelName,
6
  message: string,
7
  context: unknown[] = []
1✔
8
): ILoggable<S> => ({
9✔
9
  severity: severity,
10
  channel: channel,
11
  timestamp: Date.now(),
12
  message: message,
13
  context: context,
14
});
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc