From 45e89bf34a4f04cd55ce5cc55bfcefcce29e5013 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 8 Jan 2010 11:27:52 -0500 Subject: [PATCH] [main] Print a starting message to stdout This helps developers delineate error streams between "Alt-f2 r", among other things. --- js/ui/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/main.js b/js/ui/main.js index 7361ac301..f30644d46 100644 --- a/js/ui/main.js +++ b/js/ui/main.js @@ -142,6 +142,7 @@ function start() { global.stage.connect('captured-event', _globalKeyPressHandler); _log('info', 'loaded at ' + _startDate); + log('GNOME Shell started at ' + _startDate); Mainloop.idle_add(_removeUnusedWorkspaces); }