Skip to content

Commit

Permalink
adding more debugging to find out why some tests fail
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Dec 9, 2024
1 parent 07015da commit e834370
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions system/cache/store/indexers/MetadataIndexer.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,7 @@ component accessors="true" {

throw(
type = "InvalidProperty",
message = "Invalid property requested: #arguments.property#",
detail = "Valid properties are: #structKeyList( metadata )#"
message = "Invalid property requested: [#arguments.property#]. Valid properties are: [#structKeyList( metadata )#]"
);
}

Expand Down Expand Up @@ -176,8 +175,8 @@ component accessors="true" {
* Get an array of sorted keys for this indexer according to parameters
*
* @objectKey
* @property
* @value
* @property
* @value
*/
array function getSortedKeys(
required property,
Expand Down

0 comments on commit e834370

Please sign in to comment.