Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Fix a small error where a warning message was not being printed
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-palmer committed Jun 14, 2019
1 parent cc1cf33 commit 9f5cee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class CacheServer {

this._clientRecorder = !!options.clientRecorder;

if(!!this._clientRecorder.enabled) {
if(this._clientRecorder) {
helpers.log(consts.LOG_WARN, "Warning: client recording enabled - performance may be impacted!");
}

Expand Down

0 comments on commit 9f5cee9

Please sign in to comment.