Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(837)

Unified Diff: pkg/logging/lib/logging.dart

Issue 50313004: Revert "Remove @deprecated features." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/intl/lib/bidi_formatter.dart ('k') | pkg/logging/test/logging_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/logging/lib/logging.dart
diff --git a/pkg/logging/lib/logging.dart b/pkg/logging/lib/logging.dart
index f3b1822b451fede025e08d300a587b2fe2ec1e92..071b496c2f9977a7ee06354eae05fd22e9431975 100644
--- a/pkg/logging/lib/logging.dart
+++ b/pkg/logging/lib/logging.dart
@@ -309,6 +309,13 @@ class LogRecord {
/** Associated error (if any) when recording errors messages. */
final Object error;
+ // TODO(kevmoo) - remove before V1
+ /**
+ * DEPRECATED. Use [error] instead.
+ */
+ @deprecated
+ Object get exception => error;
+
/** Associated stackTrace (if any) when recording errors messages. */
final StackTrace stackTrace;
« no previous file with comments | « pkg/intl/lib/bidi_formatter.dart ('k') | pkg/logging/test/logging_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698