Skip to content

Commit

Permalink
Update compareDefault.cfm
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jun 27, 2024
1 parent 369982a commit 2cb4988
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions custom/default-cfconfig/compareDefault.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
}
log = expandPath( '{lucee-config}/logs/out.log' );
if ( !fileExists( log ) ){
systemOutput( "" ):
systemOutput( "--------- out.log-----------" ):
systemOutput( fileRead( log ) ):
systemOutput( "", true );
systemOutput( "--------- out.log-----------", true );
systemOutput( fileRead( log ), true );
}
errlog = expandPath( '{lucee-config}/logs/err.log' );
if ( !fileExists( errlog ) ){
systemOutput( "" ):
systemOutput( "--------- err.log-----------" ):
systemOutput( fileRead( errlog ) ):
systemOutput( "", true );
systemOutput( "--------- err.log-----------", true );
systemOutput( fileRead( errlog ), true );
}
throw "missing .CFConfig.json [#cfgPath#]";
Expand Down

0 comments on commit 2cb4988

Please sign in to comment.