| 568 | |
| 569 | |
| 570 | void iscLogException(const char* text, const Firebird::Exception& e) |
| 571 | { |
| 572 | /************************************** |
| 573 | * |
| 574 | * i s c L o g E x c e p t i o n |
| 575 | * |
| 576 | ************************************** |
| 577 | * |
| 578 | * Functional description |
| 579 | * Add record about an exception to firebird.log |
| 580 | * |
| 581 | **************************************/ |
| 582 | Firebird::StaticStatusVector s; |
| 583 | e.stuffException(s); |
| 584 | iscLogStatus(text, s.begin()); |
| 585 | } |
| 586 | |
| 587 | |
| 588 | void iscPrefixLock(TEXT* string, const TEXT* root, bool createLockDir) |
no test coverage detected