We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0ecb03 commit 488daacCopy full SHA for 488daac
1 file changed
src/Robot.mjs
@@ -544,7 +544,7 @@ class Robot {
544
let currentSection = null
545
let nextSection
546
547
- this.logger.debug(`Parsing help for ${path}`)
+ this.logger.debug(`Parsing help for ${filePath}`)
548
549
for (let i = 0, line; i < lines.length; i++) {
550
line = lines[i]
@@ -568,7 +568,7 @@ class Robot {
568
}
569
570
if (currentSection === null) {
571
- this.logger.info(`${path} is using deprecated documentation syntax`)
+ this.logger.info(`${filePath} is using deprecated documentation syntax`)
572
scriptDocumentation.commands = []
573
for (let i = 0, line, cleanedLine; i < lines.length; i++) {
574
0 commit comments