forked from kubevirt/kubevirt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubevirt#4554 from andreabolognani/libvirtd-logging
virt-launcher: Improve libvirtd debug log filters
- Loading branch information
Showing
2 changed files
with
4 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -209,12 +209,8 @@ var _ = Describe("[rfe_id:273][crit:high][vendor:[email protected]][level:compon | |
By("Getting virt-launcher logs") | ||
logs := func() string { return getVirtLauncherLogs(virtClient, vmi) } | ||
|
||
// there are plenty of strings we can use to identify the debug logs. Here we use something easy to see... | ||
Eventually(logs, | ||
11*time.Second, | ||
500*time.Millisecond). | ||
Should(ContainSubstring("OBJECT_REF")) | ||
// ...and something we deeply care about when in debug mode. | ||
// There are plenty of strings we can use to identify the debug logs. | ||
// Here we use something we deeply care about when in debug mode. | ||
Eventually(logs, | ||
2*time.Second, | ||
500*time.Millisecond). | ||
|