Skip to content
This repository has been archived by the owner on Apr 25, 2022. It is now read-only.

Allow logging of tables #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions chromelogger.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ component {

}

public void function table() {

var args = argsToArray( args = arguments );
arrayPrepend( args, "table" );
_log( args );

}

public void function group() {

var args = argsToArray( args = arguments );
Expand Down