Skip to content

Commit

Permalink
logging fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
jweisz committed Nov 9, 2020
1 parent e539dc7 commit 6bde4a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tjbot.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,8 @@ class TJBot {
* @param {int} bluePin The pin number to which the led blue pin is connected.
* @private
*/
_setupLEDCommonAnode() {
winston.verbose(`initializing ${TJBot.HARDWARE.LED_COMMON_ANODE} on redPin ${redPin}, greenPin ${greenPin}, and bluePin ${bluePin}`);
_setupLEDCommonAnode(redPin, greenPin, bluePin) {
winston.verbose(`initializing ${TJBot.HARDWARE.LED_COMMON_ANODE} on RED PIN ${redPin}, GREEN PIN ${greenPin}, and BLUE PIN ${bluePin}`);

this._commonAnodeLed = {
redPin: new Gpio(redPin, {
Expand Down

0 comments on commit 6bde4a8

Please sign in to comment.