plugin not hooking to my custom hook

You should using do_action in your header.php

do_action( 'logo_hook' );

And adding a value on this section with below function:

function add_text() {
    echo 'Hello world!';
}
add_action( 'logo_hook', 'add_text' );