How to use the setLoggerLevel function from bindings

Find comprehensive JavaScript bindings.setLoggerLevel code examples handpicked from public code repositorys.

80
81
82
83
84
85
86
87
88
89
 */
setLoggerLevel(level) {
  if (typeof level !== 'number') {
    throw new TypeError('Invalid argument');
  }
  rclnodejs.setLoggerLevel(this._name, level);
}

/**
 * Get the logging severity level.
fork icon65
star icon248
watch icon27

+ 3 other calls in file

Other functions in bindings

Sorted by popularity

function icon

bindings.createKey is the most popular function in bindings (8616 examples)