diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-02-15 13:26:02 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-02-15 16:58:51 +0100 |
commit | 4109bb6eccac0c817cfc9bde92713d760f600c97 (patch) | |
tree | d263d43bc2ae4c19de22672ca054900dc589aac8 | |
parent | 5e11432e9da7b7dc9d2db213d18668d273033459 (diff) |
live: split logging to warn not to turn off client during image creation
just split this log message.
-rw-r--r-- | src/live/ogOperations.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/live/ogOperations.py b/src/live/ogOperations.py index ea9f5cb..d538790 100644 --- a/src/live/ogOperations.py +++ b/src/live/ogOperations.py @@ -480,7 +480,8 @@ class OgLiveOperations: p2 = Popen(cmd2, stdin=p1.stdout) p1.stdout.close() - logging.info(f'Creating image at {image_path} from {padev} using {fstype}, please do not shut down or reboot the client') + logging.info(f'Creating image at {image_path} from {padev} using {fstype}') + logging.info('*DO NOT REBOOT OR POWEROFF* the client during this time') try: retdata = p2.communicate() |