In the file nodejs.module the logging is incorrect (and does not work).
The code used is like:
\Drupal::logger('nodejs')->error('nodejs', t('Error kicking uid "%uid" from the Node.js server. Server response: %error', array('%uid' => $uid, '%error' => $node_response->error)));
but should be:
\Drupal::logger('nodejs')->error(t('Error kicking uid ...
I did not make a patch because it is straightforward...
btw.: Thank you for the great module!
Comments
Comment #2
vurt commentedComment #4
glekli commentedExcellent catch. We must have not caught these because none of these errors occurred in a while. They are fixed now. Thanks for reporting.