mirror of
https://github.com/github/codeql.git
synced 2026-07-25 13:12:11 +02:00
Also accept `options.yml` and `options.yaml` files as well for test options, to get YAML syntax highlighting. In a follow up PR we might make the extension mandatory.
8 lines
102 B
Rust
8 lines
102 B
Rust
use anyhow;
|
|
use log::info;
|
|
|
|
fn foo() -> anyhow::Result<()> {
|
|
info!("logging works");
|
|
Ok(())
|
|
}
|