]> git.sesse.net Git - casparcg/blobdiff - shell/server.cpp
[polling_filesystem_monitor] Fixed bug where unallocated memory could be read by...
[casparcg] / shell / server.cpp
index 3d78ed36b55bd61fe7576f6cf06413cf8302eeb5..69fa7c083c0430e8e50c568f242b7f04e1d65ad2 100644 (file)
@@ -109,12 +109,15 @@ std::shared_ptr<boost::asio::io_service> create_running_io_service()
                                CASPAR_LOG_CURRENT_EXCEPTION();
                        }
                }
+
+               CASPAR_LOG(info) << "[asio] Global io_service uninitialized.";
        });
 
        return std::shared_ptr<boost::asio::io_service>(
                        service.get(),
                        [service, work, thread](void*) mutable
                        {
+                               CASPAR_LOG(info) << "[asio] Shutting down global io_service.";
                                work.reset();
                                service->stop();
                                if (thread->get_id() != boost::this_thread::get_id())