Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emulab-stable
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
emulab
emulab-stable
Commits
6dd11e6b
Commit
6dd11e6b
authored
Mar 09, 2017
by
Mike Hibler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Flush debug messages to cout.
This prevents old messages from winding up in the new log file.
parent
c117127f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
event/new_sched/rpc.cc
event/new_sched/rpc.cc
+4
-4
No files found.
event/new_sched/rpc.cc
View file @
6dd11e6b
...
...
@@ -191,7 +191,7 @@ RPC_invoke(char const *method,
va_list
args
;
xmlrpc_c
::
clientXmlTransport
*
transport
=
NULL
;
cout
<<
"Beginning call to "
<<
method
<<
"
\n
"
;
cout
<<
"Beginning call to "
<<
method
<<
std
::
endl
;
RPC_connect
(
&
transport
);
va_start
(
args
,
tag
);
...
...
@@ -232,7 +232,7 @@ RPC_invoke(char const *method,
RPC_disconnect
(
&
transport
);
cout
<<
"Finished with call to "
<<
method
<<
"
\n
"
;
cout
<<
"Finished with call to "
<<
method
<<
std
::
endl
;
return
retval
;
}
...
...
@@ -249,7 +249,7 @@ RPC_invoke(char *pid, char *eid, char const *method, emulab::EmulabResponse *er)
transport
=
NULL
;
cout
<<
"Beginning call to "
<<
method
<<
"
\n
"
;
cout
<<
"Beginning call to "
<<
method
<<
std
::
endl
;
RPC_connect
(
&
transport
);
try
...
...
@@ -290,7 +290,7 @@ RPC_invoke(char *pid, char *eid, char const *method, emulab::EmulabResponse *er)
}
RPC_disconnect
(
&
transport
);
cout
<<
"Finished with call to "
<<
method
<<
"
\n
"
;
cout
<<
"Finished with call to "
<<
method
<<
std
::
endl
;
return
retval
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment