export function log(label, text) {
    const title = text ? `  ${green(text)}` : '';
    return bgGreen(white(`  ${label}  `)) + title;
}