Podczas prowadzenia testu ogórka otrzymuję (oprócz wyników badań) dużo debugowania/log związane wyjście w postaci:Ogórek/Savon pominąć lub usunąć dane wyjściowe rejestrowania
D, [2013-03-06T12:21:38.911829 #49031] DEBUG -- : SOAP request:
D, [2013-03-06T12:21:38.911919 #49031] DEBUG -- : Pragma: no-cache, SOAPAction: "", Content-Type: text/xml;charset=UTF-8, Content-Length: 1592
W, [2013-03-06T12:21:38.912360 #49031] WARN -- : HTTPI executes HTTP POST using the httpclient adapter
D, [2013-03-06T12:21:39.410335 #49031] DEBUG -- : <?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
Czy istnieje sposób wyłączyć te wyjścia? Próbowałem postępując zgodnie z instrukcjami w this post, a mój plik config_spec.rb jest:
require "spec_helper"
describe Savon::Config do
let(:config) {
config = Savon::Config.new
config._logger = Savon::Logger.new
config.log_level = :error # changing the log level
HTTPI.log = false # to total silent the logging.
config
}
describe "#clone" do
it "clones the logger" do
logger = config.logger
clone = config.clone
logger.should_not equal(clone.logger)
end
end
it "allows to change the logger" do
logger = Logger.new("/dev/null")
config.logger = logger
config._logger.subject.should equal(logger)
end
it "allows to change the log level" do
Savon::Request.log_level = :info
config.log_level = :error
config._logger.level.should == :error
end
it "allows to enable/disable logging" do
config.log = false
config._logger.should be_a(Savon::NullLogger)
config.log = false
config._logger.should be_a(Savon::Logger)
end
end
Ale rejestrowania nadal pokazuje kiedy uruchomić testy ogórka.
Jaka wersja Savon używasz? 2.1.0? Mam nadzieję, że sprawdziłeś http://savonrb.com/version2.html#changes – Bala
savon (1.2.0). Musi korzystać z tej wersji (jest to zależność od strony trzeciej). – obaqueiro