escpos-mc 1.0.3 → 1.0.4-debug

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -107,6 +107,7 @@ Printer.prototype.marginRight = function (size) {
107
107
  * @return {[Printer]} printer [the escpos printer instance]
108
108
  */
109
109
  Printer.prototype.print = function (content) {
110
+ console.log("PRINT_DEBUG", "PRINT_TO_BUFFER", content);
110
111
  this.buffer.write(content);
111
112
  return this;
112
113
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "escpos-mc",
3
- "version": "1.0.3",
3
+ "version": "1.0.4-debug",
4
4
  "description": "My temp ESC/POS Printer driver for nodejs",
5
5
  "main": "index.js",
6
6
  "scripts": {