From 8ab5c24f3de23a76bd2823cd84e1902f182c817c Mon Sep 17 00:00:00 2001 From: dadhi Date: Mon, 13 Nov 2023 00:25:01 +0100 Subject: [PATCH] more fixed --- src/DryIoc/Container.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DryIoc/Container.cs b/src/DryIoc/Container.cs index 154a977b..9ed3b6c7 100644 --- a/src/DryIoc/Container.cs +++ b/src/DryIoc/Container.cs @@ -10234,7 +10234,7 @@ public StringBuilder PrintCurrent(StringBuilder s = null) else if (ServiceTypeOrInfo is Type t) s.Print(t); else - s.Print(ServiceTypeOrInfo); + s.Append(ServiceTypeOrInfo); var f = Factory; if (f != null && f is ReflectionFactory == false)