From: Elena Mamontova <helenh463@gmail.com>
Date: Tue, 12 Jul 2016 09:47:10 +0000 (+0300)
Subject: Ticket. The line for the 'change policy' value output added in the
X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/da469936612167d22ab66efe28cdc353fa1a1cb3

Ticket. The line for the 'change policy' value output added in the
PrintTariffConf() function.
---

diff --git a/projects/sgconf/tariffs.cpp b/projects/sgconf/tariffs.cpp
index df778f38..36f325ea 100644
--- a/projects/sgconf/tariffs.cpp
+++ b/projects/sgconf/tariffs.cpp
@@ -226,7 +226,8 @@ std::cout << Indent(level, true) << "name: " << conf.name << "\n"
           << Indent(level)       << "free mb: " << conf.free << "\n"
           << Indent(level)       << "passive cost: " << conf.passiveCost << "\n"
           << Indent(level)       << "traff type: " << TraffTypeToString(conf.traffType) << "\n"
-          << Indent(level)       << "period: " << PeriodToString(conf.period) << "\n";
+          << Indent(level)       << "period: " << PeriodToString(conf.period) << "\n"
+          << Indent(level)       << "change policy: " << CyangePolicyToString(conf.changePolicy) << "\n";
 }
 
 void PrintTariff(const STG::GET_TARIFF::INFO & info, size_t level = 0)