diff --git a/BeefLibs/corlib/src/Diagnostics/Debug.bf b/BeefLibs/corlib/src/Diagnostics/Debug.bf index fe45865b..e7a2a554 100644 --- a/BeefLibs/corlib/src/Diagnostics/Debug.bf +++ b/BeefLibs/corlib/src/Diagnostics/Debug.bf @@ -44,6 +44,11 @@ namespace System.Diagnostics Write(line.Ptr, line.Length); } + public static void Write(StringView sv) + { + Write(sv.[Friend]mPtr, sv.[Friend]mLength); + } + public static void Write(String fmt, params Object[] args) { String str = scope String(4096);