Chakroun-Anas / turbo-console-log

591 stars 141 forks source link

Unwanted tilde after prefix #136

Closed demedos closed 1 year ago

demedos commented 3 years ago

Hi,

setting a specific logMessagePrefix: "TCL:" and insertEnclosingClass: false still outputs the tilde after the prefix. When insertEnclosingClass is false, the expected output should be to have the tilde removed as well, since it's a divider between the class name and the function name.

Those are my vscode settings:

{
  "turboConsoleLog.logMessagePrefix": "TCL:",
  "turboConsoleLog.insertEnclosingFunction": true,
  "turboConsoleLog.includeFileNameAndLineNum": false,
  "turboConsoleLog.insertEnclosingClass": false,
  "turboConsoleLog.delimiterInsideMessage": "",
  "javascript.validate.enable": false,
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "editor.tabSize": 2,
  "editor.formatOnSave": true
}