Skip to content

Commit adcdeb7

Browse files
authored
Update issue templates
1 parent 58576d6 commit adcdeb7

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Bug report
3+
about: Report bugs
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
14+
**Expected behavior**
15+
A clear and concise description of what you expected to happen.
16+
17+
**Log**
18+
Add `import 'package:logging/logging.dart';`, add the following lines before `registerWith()`
19+
```
20+
Logger.root.level = Level.ALL;
21+
Logger.root.onRecord.listen((record) {
22+
print('${record.loggerName}.${record.level.name}: ${record.time}: ${record.message}');
23+
});
24+
```
25+
and
26+
```
27+
Past log here
28+
```

0 commit comments

Comments
 (0)