Heim >Web-Frontend >js-Tutorial >„npm kruza: Ein Logger mit Quellenverfolgung'
Automatische Verfolgung und Anzeige der Quelle (Funktion/Klasse) des Protokolls.
Bereitstellung farbenfroher und lesbarer Protokolle für bessere Sichtbarkeit.
Bietet eine saubere und einfache API zum Protokollieren mehrerer Argumente.
import _ from "kruza"; class Boxer { punch() { _.log("Punch"); } } class Police { eatDonut() { _.log("Eating donut"); } } class UFC_Champ { koSomeone() { _.log("BAM!"); } } const b = new Boxer(); b.punch(); // Output: [Boxer.punch] Punch const p = new Police(); p.eatDonut(); // Output: [Police.eatDonut] Eating donut const ufc = new UFC_Champ(); ufc.koSomeone(); // Output: [UFC_Champ.koSomeone] BAM!
Das obige ist der detaillierte Inhalt von„npm kruza: Ein Logger mit Quellenverfolgung'. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!