diff options
author | Colin Walters <walters@verbum.org> | 2014-04-03 19:39:07 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2014-04-03 19:39:08 -0400 |
commit | ac40de57734ad2241279fffba8860fdf588e8401 (patch) | |
tree | c0db74cdc726f66354bb28b3eaa32bf459f49700 /src/libostree/ostree-sysroot-deploy.c | |
parent | 890d685c7976fa7c7badd9ec42189e577824493a (diff) | |
download | ostree-ac40de57734ad2241279fffba8860fdf588e8401.tar.gz |
deploy: Add a debug message for which bootloader is used
Debugging something...
Diffstat (limited to 'src/libostree/ostree-sysroot-deploy.c')
-rw-r--r-- | src/libostree/ostree-sysroot-deploy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libostree/ostree-sysroot-deploy.c b/src/libostree/ostree-sysroot-deploy.c index 87346b7c..5f99fec5 100644 --- a/src/libostree/ostree-sysroot-deploy.c +++ b/src/libostree/ostree-sysroot-deploy.c @@ -1203,6 +1203,9 @@ ostree_sysroot_write_deployments (OstreeSysroot *self, goto out; } + g_debug ("Using bootloader: %s", bootloader ? + g_type_name (G_TYPE_FROM_INSTANCE (bootloader)) : "(none)"); + if (bootloader && !_ostree_bootloader_write_config (bootloader, new_bootversion, cancellable, error)) { |