Skip to content

Commit

Permalink
removed debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Devendra committed Jul 8, 2013
1 parent f6eef49 commit 9fa99cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scala/src/com/pubnub/examples/PubnubDevConsole.scala
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ object PubnubDevConsole {
notifyUser("SUBSCRIBE : ERROR on channel " + channel
+ " : " + error.toString())
error.errorCode match {
case PubnubError.PNERR_FORBIDDEN => { pubnub.unsubscribe(channel); println("forbidden");}
case PubnubError.PNERR_UNAUTHORIZED => {pubnub.unsubscribe(channel); println("unauthorized");}
case PubnubError.PNERR_FORBIDDEN => { pubnub.unsubscribe(channel);}
case PubnubError.PNERR_UNAUTHORIZED => {pubnub.unsubscribe(channel);}
}
}
})
Expand Down

0 comments on commit 9fa99cc

Please sign in to comment.