Убраны лишние логи
This commit is contained in:
parent
b26e0d88a1
commit
7b74f07b43
1 changed files with 0 additions and 3 deletions
|
|
@ -51,8 +51,6 @@ export namespace TagStyledEnhancerNs {
|
||||||
}
|
}
|
||||||
|
|
||||||
export class TagStyledEnhancer implements IssueEnhancerInterface {
|
export class TagStyledEnhancer implements IssueEnhancerInterface {
|
||||||
private logger = new Logger(TagStyledEnhancer.name);
|
|
||||||
|
|
||||||
name = 'tag-styled';
|
name = 'tag-styled';
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
|
|
@ -67,7 +65,6 @@ export class TagStyledEnhancer implements IssueEnhancerInterface {
|
||||||
): Promise<RedmineTypes.ExtendedIssue> {
|
): Promise<RedmineTypes.ExtendedIssue> {
|
||||||
if (!issue) return issue;
|
if (!issue) return issue;
|
||||||
const tags = this.tagsGetter(issue);
|
const tags = this.tagsGetter(issue);
|
||||||
this.logger.debug(`Found tags for issue_id = ${issue.id} - ${tags}`);
|
|
||||||
const styles = [] as TagStyledEnhancerNs.StyledTag[];
|
const styles = [] as TagStyledEnhancerNs.StyledTag[];
|
||||||
for (let i = 0; i < tags.length; i++) {
|
for (let i = 0; i < tags.length; i++) {
|
||||||
const tagName = tags[i];
|
const tagName = tags[i];
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue