replace debug with obug (#2619)

* patch unenv

* replaces debug with obug

reverts unenv patch
This commit is contained in:
Bernd Storath
2026-05-18 09:40:36 +02:00
committed by GitHub
parent e57b0977d3
commit 4e8cccb4c7
9 changed files with 16 additions and 32 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
import fs from 'node:fs/promises';
import debug from 'debug';
import { createDebug } from 'obug';
import type { InterfaceType } from '#db/repositories/interface/types';
const WG_DEBUG = debug('WireGuard');
const WG_DEBUG = createDebug('WireGuard');
const generateRandomHeaderValue = () =>
Math.floor(Math.random() * 2147483642) + 5;