Getting a custom post type image using ‘get_post_custom’

I believe you can get away with

$image_upload = get_post_meta($post->ID, 'logo', true); // CALL IMAGE

and then display it with

echo wp_get_attachment_image($image_upload);  // Echo image