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

Unified Diff: pkg/analysis_server/lib/src/status/get_handler2.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 | « pkg/analysis_server/lib/src/status/get_handler.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/status/get_handler2.dart
diff --git a/pkg/analysis_server/lib/src/status/get_handler2.dart b/pkg/analysis_server/lib/src/status/get_handler2.dart
index 2541deb1cbc394de5a8851a8d667047ca51ee4cf..fc1810553e11d117c429d70d0106520d1ec3d13d 100644
--- a/pkg/analysis_server/lib/src/status/get_handler2.dart
+++ b/pkg/analysis_server/lib/src/status/get_handler2.dart
@@ -1105,9 +1105,12 @@ class GetHandler2 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 | « pkg/analysis_server/lib/src/status/get_handler.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698