We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0d650f commit b3ae6b1Copy full SHA for b3ae6b1
code/format-code.js
@@ -21,6 +21,7 @@ function visitor(node) {
21
'[remark-clang-format] stderr: ',
22
child.stderr.toString(),
23
);
24
+ console.warn('[remark-clang-format] original code: ', node.value);
25
break;
26
}
27
if (!child.stdout) {
@@ -41,6 +42,7 @@ function visitor(node) {
41
42
});
43
if (child.stderr && child.stderr.length > 0) {
44
console.warn('[remark-ruff] stderr: ', child.stderr.toString());
45
+ console.warn('[remark-ruff] original code: ', node.value);
46
47
48
0 commit comments