Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
circlestack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
7b7c0ff4
authored
Apr 26, 2014
by
Dudás Ádám
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
operations: when called, log the subject of the operation too
parent
229a55c4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
circle/common/operations.py
+6
-4
No files found.
circle/common/operations.py
View file @
7b7c0ff4
...
@@ -62,8 +62,9 @@ class Operation(object):
...
@@ -62,8 +62,9 @@ class Operation(object):
For more information, check the synchronous call's documentation.
For more information, check the synchronous call's documentation.
"""
"""
logger
.
info
(
"
%
s called asynchronously with the following parameters: "
logger
.
info
(
"
%
s called asynchronously on
%
s with the following "
"
%
r"
,
self
.
__class__
.
__name__
,
kwargs
)
"parameters:
%
r"
,
self
.
__class__
.
__name__
,
self
.
subject
,
kwargs
)
activity
=
self
.
__prelude
(
kwargs
)
activity
=
self
.
__prelude
(
kwargs
)
return
self
.
async_operation
.
apply_async
(
args
=
(
self
.
id
,
return
self
.
async_operation
.
apply_async
(
args
=
(
self
.
id
,
self
.
subject
.
pk
,
self
.
subject
.
pk
,
...
@@ -84,8 +85,9 @@ class Operation(object):
...
@@ -84,8 +85,9 @@ class Operation(object):
* user: The User invoking the operation. If this argument is not
* user: The User invoking the operation. If this argument is not
present, it'll be provided with a default value of None.
present, it'll be provided with a default value of None.
"""
"""
logger
.
info
(
"
%
s called (synchronously) with the following parameters: "
logger
.
info
(
"
%
s called (synchronously) on
%
s with the following "
"
%
r"
,
self
.
__class__
.
__name__
,
kwargs
)
"parameters:
%
r"
,
self
.
__class__
.
__name__
,
self
.
subject
,
kwargs
)
activity
=
self
.
__prelude
(
kwargs
)
activity
=
self
.
__prelude
(
kwargs
)
return
self
.
_exec_op
(
activity
=
activity
,
**
kwargs
)
return
self
.
_exec_op
(
activity
=
activity
,
**
kwargs
)
...
...
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