Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

The new version (1.0.54) now has a log_level argument in live_log_script, so you can do

// in the end of obj_gmlive's Create:
live_log_script = function(text, level) {
    show_debug_message(text);
    if (level == 2) {
        // make a beep
    }
}