X Tutup
Skip to content

Commit ee3c580

Browse files
committed
fix(transformers): replace an error with a warning when cannot resolve a symbol
1 parent 05c185a commit ee3c580

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules_dart/transform/lib/src/transform/template_compiler/compile_data_creator.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ class _CompileDataCreator {
235235
return new CompileIdentifierMetadata(name: "FiberMarket", moduleUrl: 'unspecified');
236236

237237
} else {
238-
log.error(
238+
log.warning(
239239
'Missing identifier "${id.name}" '
240240
'needed by "${neededBy.name}" from metadata map',
241241
asset: entryPoint);

0 commit comments

Comments
 (0)
X Tutup