capistrano-elobuff 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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"
|