public override string Log(Error error)
        {
            var errorToStore = new ExceptionRecord
            {
                SerializedError = ErrorXml.EncodeString(error)
            };

            return _storage.StoreError(errorToStore);
        }
        public string StoreError(ExceptionRecord error)
        {
            _tables.Save(error);

            return KeyManager.EncodeKeys(error);
        }
Example #3
0
 public static string EncodeKeys(ExceptionRecord record)
 {
     return string.Empty;
 }
Example #4
0
 public static void SetKey(ExceptionRecord record, DateTime refDate)
 {
     record.PartitionKey = refDate.ToString(PARTITION_FORMAT);
 }