Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
8609d2d5
Commit
8609d2d5
authored
8 years ago
by
Steven Murray
Browse files
Options
Downloads
Patches
Plain Diff
Replaced LOG_WARNING with log::WARNING
parent
fb9541d5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mediachanger/MmcProxyLog.cpp
+4
-4
4 additions, 4 deletions
mediachanger/MmcProxyLog.cpp
with
4 additions
and
4 deletions
mediachanger/MmcProxyLog.cpp
+
4
−
4
View file @
8609d2d5
...
...
@@ -36,7 +36,7 @@ void cta::mediachanger::MmcProxyLog::mountTapeReadOnly(
std
::
list
<
log
::
Param
>
params
=
{
log
::
Param
(
"TPVID"
,
vid
),
log
::
Param
(
"librarySlot"
,
librarySlot
.
str
())};
m_log
(
LOG_
WARNING
,
"Tape should be manual mounted for read-only access"
,
m_log
(
log
::
WARNING
,
"Tape should be manual mounted for read-only access"
,
params
);
}
...
...
@@ -48,7 +48,7 @@ void cta::mediachanger::MmcProxyLog::mountTapeReadWrite(
std
::
list
<
log
::
Param
>
params
=
{
log
::
Param
(
"TPVID"
,
vid
),
log
::
Param
(
"librarySlot"
,
librarySlot
.
str
())};
m_log
(
LOG_
WARNING
,
"Tape should be manual mounted for read/write access"
,
m_log
(
log
::
WARNING
,
"Tape should be manual mounted for read/write access"
,
params
);
}
...
...
@@ -60,7 +60,7 @@ void cta::mediachanger::MmcProxyLog::dismountTape(
std
::
list
<
log
::
Param
>
params
=
{
log
::
Param
(
"TPVID"
,
vid
),
log
::
Param
(
"librarySlot"
,
librarySlot
.
str
())};
m_log
(
LOG_
WARNING
,
"Tape should be manual dismounted"
,
params
);
m_log
(
log
::
WARNING
,
"Tape should be manual dismounted"
,
params
);
}
//------------------------------------------------------------------------------
...
...
@@ -71,5 +71,5 @@ void cta::mediachanger::MmcProxyLog::forceDismountTape(
std
::
list
<
log
::
Param
>
params
=
{
log
::
Param
(
"TPVID"
,
vid
),
log
::
Param
(
"librarySlot"
,
librarySlot
.
str
())};
m_log
(
LOG_
WARNING
,
"Tape should be manual dismounted"
,
params
);
m_log
(
log
::
WARNING
,
"Tape should be manual dismounted"
,
params
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment