public function output()
    {
        $data = $this->collector->get_data();
        ?>
		<div class="qm" id="<?php 
        echo esc_attr($this->collector->id());
        ?>
">
			<table cellspacing="0">
				<thead>
					<tr>
						<td colspan="3"><?php 
        echo esc_html($this->collector->name());
        ?>
</td>
					</tr>
					<tr>
						<th scope="col">Variable</th>
						<th scope="col">Type</th>
						<th scope="col">Value</th>
					</tr>

				</thead>

				<tbody>
					<?php 
        QMCV_IO::echo_debug(true);
        ?>
				</tbody>
			</table>
		</div>
		<?php 
    }