comparison Core/HttpServer/MongooseServer.cpp @ 477:6f8ae46ed90e

moves
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 15 Jul 2013 21:27:49 +0200
parents c9a5d72f8481
children 08eca5d86aad
comparison
equal deleted inserted replaced
476:4aae0261515e 477:6f8ae46ed90e
701 HttpHandler* handler = that->FindHandler(uri); 701 HttpHandler* handler = that->FindHandler(uri);
702 if (handler) 702 if (handler)
703 { 703 {
704 try 704 try
705 { 705 {
706 LOG(INFO) << Toolbox::ToString(method) << " " << Toolbox::FlattenUri(uri); 706 LOG(INFO) << EnumerationToString(method) << " " << Toolbox::FlattenUri(uri);
707 handler->Handle(output, method, uri, headers, argumentsGET, body); 707 handler->Handle(output, method, uri, headers, argumentsGET, body);
708 } 708 }
709 catch (OrthancException& e) 709 catch (OrthancException& e)
710 { 710 {
711 LOG(ERROR) << "MongooseServer Exception [" << e.What() << "]"; 711 LOG(ERROR) << "MongooseServer Exception [" << e.What() << "]";