Skip to content

Commit

Permalink
refactor: remove repository config output
Browse files Browse the repository at this point in the history
  • Loading branch information
error418 committed Jul 25, 2020
1 parent d842992 commit cc8a1c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/provider/gitea/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export class GiteaClient extends ProviderClient {
}

try {
log.info("parsing repository configuration for %s/%s\n%j", owner, repo, yaml.safeLoad(Buffer.from((res.body as any).content, "base64").toString()));
log.info("parsing repository configuration for %s/%s", owner, repo);
resolve(yaml.safeLoad(Buffer.from((res.body as any).content, "base64").toString()));
} catch (err) {
reject(err);
Expand Down

0 comments on commit cc8a1c5

Please sign in to comment.