fix logger name in integration tests (#246)

This commit is contained in:
bmc-msft 2020-11-02 13:50:17 -05:00 committed by GitHub
parent 4df1fff645
commit 2bc03855a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -584,7 +584,9 @@ class Run(Command):
def main() -> int:
return execute_api(Run(Onefuzz(), logging.getLogger("ossfuzz")), [Command], "0.0.1")
return execute_api(
Run(Onefuzz(), logging.getLogger("integration")), [Command], "0.0.1"
)
if __name__ == "__main__":