Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMitchell Hwang <16830051+mdh1418@users.noreply.github.com>2022-01-24 23:06:56 +0300
committerGitHub <noreply@github.com>2022-01-24 23:06:56 +0300
commit1c509934921d6a8b52cc9cb48e983b56da759580 (patch)
treecab4e110218156c9869b492053e51074d4a215ad /docs
parent29cc2a2c23ce15469575a0b25c8b8b453a1d975f (diff)
[Android][libs] Enable Internal.Console.Write in System.Private.CoreLib (#63949)
* [Android][libs] Enable Internal.Console.Write in System.Private.CoreLib * [docs] Add debugging System.Private.CoreLib Internal.Console.Write * Elaborate on debugging corelib log * Address feedback
Diffstat (limited to 'docs')
-rw-r--r--docs/workflow/debugging/libraries/debugging-corelib.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/workflow/debugging/libraries/debugging-corelib.md b/docs/workflow/debugging/libraries/debugging-corelib.md
new file mode 100644
index 00000000000..9dd817d5bf7
--- /dev/null
+++ b/docs/workflow/debugging/libraries/debugging-corelib.md
@@ -0,0 +1,7 @@
+Debugging System.Private.CoreLib
+==========================
+
+`System.Console.Write`/`System.Console.WriteLine` cannot be used in `System.Private.CoreLib`. Instead, use `Internal.Console.Write` to add temporary logging for printf-style debugging.
+
+### Android
+The logs can be found through the generated Android Debug Bridge log or viewed directly through ADB logcat.