Skip to content

Commit

Permalink
release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bsrdjan committed Jan 27, 2021
1 parent 9468d9c commit cf1f6ed
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions abap-api-tools/src/ts/backend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -525,9 +525,9 @@ export class Backend {
this.annotations_clean();

log.info(
`\nbackend: ${this.argv.dest} ${chalk.bold(this.api_name)} (${
`\napi ${this.argv.dest}: ${chalk.bold(this.api_name)} language: ${
this.argv.lang
}) serch helps: ${
} serch helps: ${
Object.keys(this.search_help_api).length > 0 ? "yes" : "no"
}\n`
);
Expand Down Expand Up @@ -705,7 +705,7 @@ export class Backend {
delete p.TABNAME;
}

// log
// parameter class
if (p.PARAMCLASS === ParamClass.exception) {
log.info(
chalk.grey(
Expand All @@ -720,12 +720,12 @@ export class Backend {
sprintf(
"%-13s",
`${ParamClassDesc[p.PARAMCLASS as string].toLowerCase()} ${
p.paramType
p.paramType === ParamClass.table ? "" : p.paramType // table table -> table
}`
)
),
chalk[p.nativeKey ? "red" : "grey"](
sprintf(`%-${param_name_len}s`, p.paramName)
sprintf(`%-${param_name_len}s`, p.paramName) // native ABAP type, no ddic warning
),
chalk.grey(p.PARAMTEXT)
);
Expand Down

0 comments on commit cf1f6ed

Please sign in to comment.