tibi-docs/docs/md/server-javascript-kontext/packages/debug.md

18 lines
250 B
Markdown
Raw Normal View History

2023-06-03 20:07:58 +02:00
## debug
```ts
interface DebugPackage {
/**
* dumps data to header and server log
*
* @param toDump data to dump
*/
dump(...toDump: any): void
/**
* get Sentry trace id
*/
sentryTraceId(): string
}
```