From 1c72acd84e9cabfc3abb974fd25cdcf1159c0c5c Mon Sep 17 00:00:00 2001 From: lmajano Date: Mon, 9 Sep 2024 16:43:58 +0000 Subject: [PATCH] Apply cfformat changes --- system/BaseSpec.cfc | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/system/BaseSpec.cfc b/system/BaseSpec.cfc index 16f892a..f5f809a 100644 --- a/system/BaseSpec.cfc +++ b/system/BaseSpec.cfc @@ -1461,17 +1461,22 @@ component { /** * Send some information to the console via writedump( output="console" ) * - * @var The data to send - * @top Apply a top to the dump, by default it does 9999 levels + * @var The data to send + * @top Apply a top to the dump, by default it does 9999 levels * @showUDFs Show UDFs in the dump, by default it does not - * @label A label to add to the console output + * @label A label to add to the console output */ - any function console( required var, numeric top = 9999, boolean showUDFs = false, string label="" ){ + any function console( + required var, + numeric top = 9999, + boolean showUDFs = false, + string label = "" + ){ writeDump( - output = "console", - var = arguments.var, - label = "TestBox Console: #arguments.label#", - top = arguments.top, + output = "console", + var = arguments.var, + label = "TestBox Console: #arguments.label#", + top = arguments.top, showUDFs = arguments.showUDFs ); return this;