From a83496f75013b392d00e48977e9d409199eade24 Mon Sep 17 00:00:00 2001 From: Julius Recep Colliander Celik Date: Sun, 2 Feb 2020 12:02:07 +0100 Subject: [PATCH] docs: Update Readme.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9970018..e21cd34 100644 --- a/README.md +++ b/README.md @@ -44,13 +44,13 @@ const heos = require('heos-api') heos.discoverAndConnect().then(connection => connection - .onAll(saveToLog) + .onAll(console.log) .on( { commandGroup: 'event', command: 'player_volume_changed' }, - console.log + console.info ) .write('system', 'prettify_json_response', { enable: 'on' }) .write('system', 'heart_beat')