[gnome-shell] gdm: Include the failed service name when in reporting errors



commit ca912f55ccce3fb4c985ac91bb1d9f1b00ee8431
Author: Marco Trevisan (TreviƱo) <mail 3v1n0 net>
Date:   Tue Feb 2 16:40:24 2021 +0100

    gdm: Include the failed service name when in reporting errors
    
    Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1622>

 js/gdm/util.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/js/gdm/util.js b/js/gdm/util.js
index 0465609195..a35ab94b98 100644
--- a/js/gdm/util.js
+++ b/js/gdm/util.js
@@ -507,8 +507,8 @@ var ShellUserVerifier = class {
                 return;
             }
             this._reportInitError(this._userName
-                ? 'Failed to start verification for user'
-                : 'Failed to start verification', e);
+                ? 'Failed to start %s verification for user'.format(serviceName)
+                : 'Failed to start %s verification'.format(serviceName), e);
             return;
         }
         this._hold.release();


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]