server: fix bootstrap log

This commit is contained in:
Dan Bungert 2024-03-28 17:20:21 -06:00
parent eca86c58da
commit 3422e3be2e
1 changed files with 2 additions and 2 deletions

View File

@ -212,8 +212,8 @@ def main():
server.note_file_for_apport("InstallerServerLog", logfiles["debug"]) server.note_file_for_apport("InstallerServerLog", logfiles["debug"])
server.note_file_for_apport("InstallerServerLogInfo", logfiles["info"]) server.note_file_for_apport("InstallerServerLogInfo", logfiles["info"])
server.note_file_for_apport( server.note_file_for_apport(
"UdiLog", "BootstrapLog",
os.path.realpath("/var/log/installer/ubuntu_desktop_installer.log"), os.path.realpath("/var/log/installer/ubuntu_bootstrap.log"),
) )
await server.run() await server.run()