diff --git a/ICD.Common.Utils/Json/JsonUtils.cs b/ICD.Common.Utils/Json/JsonUtils.cs
index 8bb7a9c..6449cd7 100644
--- a/ICD.Common.Utils/Json/JsonUtils.cs
+++ b/ICD.Common.Utils/Json/JsonUtils.cs
@@ -107,9 +107,21 @@ namespace ICD.Common.Utils.Json
///
[PublicAPI]
public static void Print(object value)
+ {
+ string formatted = Format(value);
+ IcdConsole.PrintLine(formatted);
+ }
+
+ ///
+ /// Serializes the given item and formats the JSON into a human-readable form.
+ ///
+ ///
+ ///
+ [PublicAPI]
+ public static string Format(object value)
{
string serial = JsonConvert.SerializeObject(value);
- Print(serial);
+ return Format(serial);
}
///