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

Unified Diff: pkg/analysis_server/lib/src/status/get_handler.dart

Issue 2661043004: Show the platform version in the analysis server status page. (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | pkg/analysis_server/lib/src/status/get_handler2.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/status/get_handler.dart
diff --git a/pkg/analysis_server/lib/src/status/get_handler.dart b/pkg/analysis_server/lib/src/status/get_handler.dart
index 087b65873679278912e6955747c079f24d0ff402..7243ef2b7e2ae88cbb7db4f6a584915112933284 100644
--- a/pkg/analysis_server/lib/src/status/get_handler.dart
+++ b/pkg/analysis_server/lib/src/status/get_handler.dart
@@ -2527,9 +2527,12 @@ class GetHandler implements AbstractGetHandler {
buffer.write('Inactive');
}
buffer.write('<br>');
- buffer.write('Version: ');
+ buffer.write('Server version: ');
buffer.write(AnalysisServer.VERSION);
buffer.write('<br>');
+ buffer.write('SDK: ');
+ buffer.write(Platform.version);
+ buffer.write('<br>');
buffer.write('Process ID: ');
buffer.write(pid);
buffer.write('</p>');
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/status/get_handler2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698