Skip to content

Commit 697c24d

Browse files
committed
Remove setLogger
Squashed commit of the following: commit 5560833 Author: Dávid Tóta <[email protected]> Date: Thu Jul 31 21:25:37 2025 +0300 Applied suggestion commit b4f9e5b Author: Elizaveta <[email protected]> Date: Thu Jul 31 21:18:39 2025 +0300 changelog commit 9009760 Author: Elizaveta <[email protected]> Date: Thu Jul 31 19:35:22 2025 +0300 fix month commit b1e7488 Author: Elizaveta <[email protected]> Date: Thu Jul 31 19:31:47 2025 +0300 remove package manager commit f2615ca Author: Elizaveta <[email protected]> Date: Thu Jul 31 19:30:00 2025 +0300 Remove setLogger
1 parent 35ab98c commit 697c24d

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,21 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [v3.0.0] - 2025-07-23
8+
## [v3.0.2] - 2025-07-31
9+
10+
### Added
11+
12+
- Remove `setLogger` function.
13+
14+
[v3.0.2]: https://github.com/AdguardTeam/FiltersCompiler/compare/v3.0.1...v3.0.2
15+
16+
## [v3.0.1] - 2025-07-31
917

1018
### Added
1119

1220
- Deploy to `npmjs`.
1321

14-
[v3.0.0]: https://github.com/AdguardTeam/FiltersCompiler/compare/v2.0.6...v3.0.0
22+
[v3.0.1]: https://github.com/AdguardTeam/FiltersCompiler/compare/v2.0.6...v3.0.1
1523

1624
## [v2.0.6] - 2025-07-21
1725

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adguard/filters-compiler",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "AdGuard filters compiler",
55
"homepage": "http://adguard.com",
66
"type": "module",

src/index.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import path from 'path';
2-
import { setLogger, setConfiguration, CompatibilityTypes } from '@adguard/tsurlfilter';
2+
import { setConfiguration, CompatibilityTypes } from '@adguard/tsurlfilter';
33

44
import { build } from './main/builder';
55
import { schemaValidator } from './main/json-validator';
@@ -9,9 +9,6 @@ import { logger } from './main/utils/log';
99
// default platforms config
1010
import { platformsConfig } from './main/platforms-config';
1111

12-
// Sets RuleConverter to use logger of current library
13-
setLogger(logger);
14-
1512
// Sets configuration compatibility
1613
setConfiguration({ compatibility: CompatibilityTypes.Corelibs });
1714

0 commit comments

Comments
 (0)