mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 06:09:08 +00:00
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect.
This commit is contained in:
parent
6fa42af567
commit
843ebbd2c3
Notes:
sideshowbarker
2024-07-18 23:55:25 +09:00
Author: https://github.com/asynts
Commit: 843ebbd2c3
Pull-request: https://github.com/SerenityOS/serenity/pull/4907
15 changed files with 46 additions and 21 deletions
|
@ -145,7 +145,7 @@ void FileSystemModel::Node::traverse_if_needed()
|
|||
return;
|
||||
}
|
||||
fcntl(m_watch_fd, F_SETFD, FD_CLOEXEC);
|
||||
dbg() << "Watching " << full_path << " for changes, m_watch_fd = " << m_watch_fd;
|
||||
dbgln("Watching {} for changes, m_watch_fd={}", full_path, m_watch_fd);
|
||||
m_notifier = Core::Notifier::construct(m_watch_fd, Core::Notifier::Event::Read);
|
||||
m_notifier->on_ready_to_read = [this] {
|
||||
char buffer[32];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue