Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
uniset2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UniSet project repositories
uniset2
Commits
03d3099f
Commit
03d3099f
authored
Mar 19, 2014
by
Pavel Vainerman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Исправил ошибку с выводом логов в ulog вместо dlog
parent
8dad171a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
smemory.cc
extensions/SharedMemory/smemory.cc
+4
-4
uninet.cc
extensions/UniNetwork/uninet.cc
+3
-3
No files found.
extensions/SharedMemory/smemory.cc
View file @
03d3099f
...
...
@@ -44,19 +44,19 @@ int main(int argc, const char **argv)
}
catch
(
SystemError
&
err
)
{
u
log
.
crit
()
<<
"(smemory): "
<<
err
<<
endl
;
d
log
.
crit
()
<<
"(smemory): "
<<
err
<<
endl
;
}
catch
(
Exception
&
ex
)
{
u
log
.
crit
()
<<
"(smemory): "
<<
ex
<<
endl
;
d
log
.
crit
()
<<
"(smemory): "
<<
ex
<<
endl
;
}
catch
(
std
::
exception
&
e
)
{
u
log
.
crit
()
<<
"(smemory): "
<<
e
.
what
()
<<
endl
;
d
log
.
crit
()
<<
"(smemory): "
<<
e
.
what
()
<<
endl
;
}
catch
(...)
{
u
log
.
crit
()
<<
"(smemory): catch(...)"
<<
endl
;
d
log
.
crit
()
<<
"(smemory): catch(...)"
<<
endl
;
}
return
1
;
...
...
extensions/UniNetwork/uninet.cc
View file @
03d3099f
...
...
@@ -58,15 +58,15 @@ int main(int argc, const char **argv)
}
catch
(
SystemError
&
err
)
{
u
log
.
crit
()
<<
"(uninetwork): "
<<
err
<<
endl
;
d
log
.
crit
()
<<
"(uninetwork): "
<<
err
<<
endl
;
}
catch
(
Exception
&
ex
)
{
u
log
.
crit
()
<<
"(uninetwork): "
<<
ex
<<
endl
;
d
log
.
crit
()
<<
"(uninetwork): "
<<
ex
<<
endl
;
}
catch
(...)
{
u
log
.
crit
()
<<
"(uninetwork): catch(...)"
<<
endl
;
d
log
.
crit
()
<<
"(uninetwork): catch(...)"
<<
endl
;
}
while
(
waitpid
(
-
1
,
0
,
0
)
>
0
);
...
...
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