QML ListView appropriate for Logger

I am working on Qt/QML application, which among other consists of QML Splash screen at startup. Inside the splash screen, I check for many things like:

  1. LAN/WAN connection ok?
  2. Settings database connection ok?
  3. Merchandise database connection ok?
  4. Search for CUPS and Bluetooth printer(s)
  5. etc ...

Now, in this Splash Screen - in its bottom part, I have simple QML ListView with custom delegate, consisting of simple QML Text. Backlogic C++ class uses this ListView to show the results of uppers checks. Now, this works for now (there are still some modifications to be done), however, since I am LIGHT YEARS AWAY FROM BEING Graphics/UI/UX Designer, is it appropriate (from this point of view) to use such GUI element for this task?