CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 14:34:03 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=b11359593b8519bcf930bf591bd40594aa3fa22e9b04633128645d4334443ef4a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22ODoGwzJxN6_A49aIm3c3nDKQ-nDcb92c%22%3B%7D; HttpOnly; Path=/
cf-ray: 98cf13779a5cf470-BLR
Specific type for _logs - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- type LogLevel =
- | "emergency"
- | "alert"
- | "critical"
- | "error"
- | "warning"
- | "notice"
- | "info"
- | "debug";
- type LogList = {
- [key in LogLevel]: Array<string>;
- };
- export class Log {
- _logs: LogList = {
- emergency: [],
- alert: [],
- critical: [],
- error: [],
- warning: [],
- notice: [],
- info: [],
- debug: [],
- };
- constructor() {}
- add(level: LogLevel, message: string): void {
- this._logs[level].push(message);
- }
- emergency(message: string): void {
- this.add("emergency", message);
- }
- alert(message: string): void {
- this.add("alert", message);
- }
- critical(message: string): void {
- this.add("critical", message);
- }
- error(message: string): void {
- this.add("error", message);
- }
- warning(message: string): void {
- this.add("warning", message);
- }
- notice(message: string): void {
- this.add("notice", message);
- }
- info(message: string): void {
- this.add("notice", message);
- }
- debug(message: string): void {
- this.add("debug", message);
- }
- get logs(): LogList {
- return this._logs;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐✅ Online Marketplace Exploit ✅ NEVER SEEN BE...
JavaScript | 5 sec ago | 0.24 KB
-
⭐✅ Swapzone Glitch ✅ Working⭐⭐⭐ L
JavaScript | 5 sec ago | 0.24 KB
-
✅⭐ Make huge profits on trading ⭐⭐ J
JavaScript | 7 sec ago | 0.24 KB
-
✅ Make $2500 in 20 minutes⭐⭐⭐ 2
JavaScript | 16 sec ago | 0.24 KB
-
⭐✅ Trading Profit Method ✅ NEVER SEEN BEFORE...
JavaScript | 17 sec ago | 0.24 KB
-
⭐✅ MAKE $2500 IN 15 MIN⭐⭐⭐ 4
JavaScript | 19 sec ago | 0.24 KB
-
⭐⭐Exchange Exploit⭐⭐ 1
JavaScript | 27 sec ago | 0.24 KB
-
⭐ Instant BTC Profit Method ✅ NEVER SEEN BEFO...
JavaScript | 27 sec ago | 0.24 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand