Skip to content

Commit

Permalink
Merge pull request #139 from oarevalo/1.8
Browse files Browse the repository at this point in the history
Release 1.8.8
  • Loading branch information
oarevalo committed Mar 16, 2016
2 parents fee8f3e + f5d740e commit 3139e72
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions client/bugLogService.cfc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<cfcomponent>
<cfset variables.bugLogClientVersion = "1.8-c5"> <!--- bugloghq client version --->
<cfset variables.bugLogClientVersion = "1.8-c6"> <!--- bugloghq client version --->
<cfset variables.bugEmailSender = "">
<cfset variables.bugEmailRecipients = "">
<cfset variables.bugLogListener = "">
Expand Down Expand Up @@ -147,7 +147,7 @@
<cfargument name="maxDumpDepth" type="numeric" required="false" default="#variables.maxDumpDepth#">
<cfargument name="writeToCFLog" type="boolean" required="false" default="#variables.writeToCFLog#">
<cfargument name="AppName" type="string" required="false" default="#variables.appName#">

<cfset var shortMessage = "">
<cfset var longMessage = "">
<cfset var tmpCFID = "">
Expand All @@ -166,7 +166,7 @@
<cfif isDefined("cftoken")>
<cfset tmpCFTOKEN = cftoken>
</cfif>

<cftry>
<!--- compose the full report --->
<cfset longMessage = composeFullMessage(arguments.message, arguments.exception, arguments.extraInfo, arguments.maxDumpDepth, arguments.AppName)>
Expand Down Expand Up @@ -511,6 +511,7 @@
};
arrayAppend(checkpoints, item);
</cfscript>
<cfset request[checkpointsKey] = checkpoints>
</cffunction>

<cffunction name="getCheckpoints" access="public" returntype="array" hint="returns the checkpoints saved for the current request">
Expand All @@ -524,7 +525,7 @@
<cfargument name="data" type="any" required="true">
<cfargument name="maxDumpDepth" type="numeric" required="false" default="#variables.maxDumpDepth#">
<cfset var out = "">

<cfif isSimpleValue(arguments.data)>
<cfset out = arguments.data>
<cfelseif isStruct(arguments.data) and structisempty(arguments.data)>
Expand Down
2 changes: 1 addition & 1 deletion hq/config/config.xml.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<settings>
<!-- Application Title -->
<setting name="applicationTitle" value="BugLogHQ"/>
<setting name="versionTag" value="1.8.7" />
<setting name="versionTag" value="1.8.8" />

<!-- These two settings are used for reporting internal
errors of the HQ application -->
Expand Down

0 comments on commit 3139e72

Please sign in to comment.