Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/logging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ on:
- '.github/workflows/analyze.yml'
- '.github/actions/dart-test/**'
- '.github/actions/coverage/**'
- 'dart/**'
- 'logging/**'
- 'packages/dart/**'
- 'packages/logging/**'

jobs:
cancel-previous-workflow:
Expand All @@ -39,17 +39,17 @@ jobs:

- uses: ./.github/actions/dart-test
with:
directory: logging
directory: packages/logging

- uses: ./.github/actions/coverage
if: runner.os == 'Linux' && matrix.sdk == 'stable'
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: logging
directory: packages/logging
coverage: sentry_logging
min-coverage: 90

analyze:
uses: ./.github/workflows/analyze.yml
with:
package: logging
package: packages/logging
1 change: 0 additions & 1 deletion logging/CHANGELOG.md

This file was deleted.

1 change: 0 additions & 1 deletion logging/dartdoc_options.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions logging/lib/sentry_logging.dart

This file was deleted.

File renamed without changes.
1 change: 1 addition & 0 deletions packages/logging/CHANGELOG.md
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
1 change: 1 addition & 0 deletions packages/logging/dartdoc_options.yaml
3 changes: 3 additions & 0 deletions packages/logging/lib/sentry_logging.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
library;

export '../../../logging/lib/src/logging_integration.dart';
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'package:meta/meta.dart';

import 'package:sentry/sentry.dart';

import 'no_such_method_provider.dart';
import '../../../logging/test/no_such_method_provider.dart';
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Incorrect Import Path Causes Dependency Issues

The import path ../../../logging/test/no_such_method_provider.dart was incorrectly introduced in packages/logging/test/mock_hub.dart. This path references the old logging/ directory structure, whereas it should be import 'no_such_method_provider.dart'; to reference the file locally within the new packages/logging/ structure. This creates an unnecessary dependency on the old location and will break once the old directory is removed.

Fix in Cursor Fix in Web


final fakeDsn = 'https://[email protected]/1234567';

Expand Down
File renamed without changes.
Loading