capistrano-elobuff 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
data/elobuff_capistrano.gemspec
CHANGED
@@ -18,6 +18,11 @@ Capistrano::Configuration.instance.load do
|
|
18
18
|
run "tail -f -q #{current_path}/log/*.log"
|
19
19
|
end
|
20
20
|
|
21
|
+
desc "Watch the idleworker files with tail"
|
22
|
+
task :worker, roles: :idleworker, on_no_matching_servers: :continue do
|
23
|
+
run "tail -f -q #{current_path}/log/idleworker*.log"
|
24
|
+
end
|
25
|
+
|
21
26
|
desc "Watch the merger files with tail"
|
22
27
|
task :merger, roles: :db, on_no_matching_servers: :continue do
|
23
28
|
run "tail -f -q #{current_path}/log/merger*.log"
|