mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
9 lines
208 B
Dart
9 lines
208 B
Dart
|
import 'dart:convert';
|
||
|
|
||
|
import 'package:appflowy_backend/log.dart';
|
||
|
|
||
|
const JsonEncoder _encoder = JsonEncoder.withIndent(' ');
|
||
|
void prettyPrintJson(Object? object) {
|
||
|
Log.debug(_encoder.convert(object));
|
||
|
}
|