final Config appengineConf = loader.fromString(
"crashnote { enabled = " + enabled + ", request { ignore-localhost = false } }");
// .. and add it to the application conf
return appengineConf // #1 dynamic AppEngine props (above)
.withFallback(super.readDefaultFileConf()); // #2 other default props
}
}