[flutter_tool] Add missing toString() (#37331)

This commit is contained in:
Zachary Anderson 2019-08-01 09:23:05 -07:00 committed by GitHub
parent ea32385162
commit 2b03e2089d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -663,7 +663,7 @@ class DeviceDomain extends Domain {
final Map<String, Object> response = await _deviceToMap(device);
sendEvent(eventName, response);
} catch (err) {
printError(err);
printError('$err');
}
});
};