Skip to content

Commit

Permalink
remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ицкович Алексей Анатольевич committed Mar 9, 2024
1 parent 53dc35f commit df2356b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ ${
}

private makeAction = (action: Action, associations: Association[]): string | null => {
console.log(action);
const index = associations.findIndex(association => association.uuid === action.parentId);
const hasAssociation = action.template?.includes('{1}')
// TODO добавить сообщение об ошибке в форме (отсутствует ассоциация)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class SandboxComponent {
}

doSomething() {
console.log('do it');
// console.log('do it');
// this.pinSelectedService.select({ id: 'PWM3' });
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export class HighlightPinDirective {
@HostListener('mouseenter')
public onMouseOver(): void {
this.pinSelectedService.select(this.configuratorHighlightPin);
console.log('Mouse over', this.configuratorHighlightPin);
}

@HostListener('click')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ export class PinsStateService {

this._boardConfig$.next({...state, pins: updated, lastChangedTime: Date.now() });

console.group('Store');
console.log(this.snapshot);
console.groupEnd();
// console.group('Store');
// console.log(this.snapshot);
// console.groupEnd();

this.updateRoute();
}
Expand Down

0 comments on commit df2356b

Please sign in to comment.